pub struct Dialect {
pub delimiter: u8,
pub header: Header,
pub quote: Quote,
pub flexible: bool,
pub is_utf8: bool,
}Expand description
CSV dialect specification.
Fields§
§delimiter: u8Field delimiter character.
header: HeaderHeader configuration.
quote: QuoteQuote character configuration.
flexible: boolWhether the CSV has variable field counts across records.
is_utf8: boolWhether the file is valid UTF-8.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Dialect
Auto Trait Implementations§
impl Freeze for Dialect
impl RefUnwindSafe for Dialect
impl Send for Dialect
impl Sync for Dialect
impl Unpin for Dialect
impl UnwindSafe for Dialect
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