pub struct CsvExportConfig {
pub delimiter: char,
pub include_headers: bool,
pub quote_strings: bool,
}
Expand description
CSV export configuration
Fields§
§delimiter: char
§include_headers: bool
§quote_strings: bool
Trait Implementations§
Source§impl Clone for CsvExportConfig
impl Clone for CsvExportConfig
Source§fn clone(&self) -> CsvExportConfig
fn clone(&self) -> CsvExportConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 CsvExportConfig
impl Debug for CsvExportConfig
Source§impl Default for CsvExportConfig
impl Default for CsvExportConfig
Source§impl<'de> Deserialize<'de> for CsvExportConfig
impl<'de> Deserialize<'de> for CsvExportConfig
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 CsvExportConfig
impl RefUnwindSafe for CsvExportConfig
impl Send for CsvExportConfig
impl Sync for CsvExportConfig
impl Unpin for CsvExportConfig
impl UnwindSafe for CsvExportConfig
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