pub struct TabularParseConfig {
pub header: bool,
pub delimiter: Option<String>,
pub dialect: Option<CsvDialectConfig>,
pub header_line: Option<usize>,
pub skip_lines: Option<usize>,
pub records_path: Option<String>,
}Fields§
§header: bool§delimiter: Option<String>§dialect: Option<CsvDialectConfig>§header_line: Option<usize>§skip_lines: Option<usize>§records_path: Option<String>JSON record collection path for document formats that need to expose a nested array as the tabular record stream.
Trait Implementations§
Source§impl Clone for TabularParseConfig
impl Clone for TabularParseConfig
Source§fn clone(&self) -> TabularParseConfig
fn clone(&self) -> TabularParseConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TabularParseConfig
impl Debug for TabularParseConfig
Source§impl Default for TabularParseConfig
impl Default for TabularParseConfig
Source§impl<'de> Deserialize<'de> for TabularParseConfig
impl<'de> Deserialize<'de> for TabularParseConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TabularParseConfig
impl RefUnwindSafe for TabularParseConfig
impl Send for TabularParseConfig
impl Sync for TabularParseConfig
impl Unpin for TabularParseConfig
impl UnsafeUnpin for TabularParseConfig
impl UnwindSafe for TabularParseConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more