Struct csvs_convert::Options
source · pub struct Options {Show 15 fields
pub delete_input_csv: bool,
pub seperator: String,
pub use_titles: bool,
pub drop: bool,
pub schema: String,
pub evolve: bool,
pub delimiter: Option<u8>,
pub quote: Option<u8>,
pub double_quote: bool,
pub escape: Option<u8>,
pub comment: Option<u8>,
pub stats: bool,
pub datapackage_string: bool,
pub stats_csv: String,
pub threads: usize,
}Fields§
§delete_input_csv: bool§seperator: String§use_titles: bool§drop: bool§schema: String§evolve: bool§delimiter: Option<u8>§quote: Option<u8>§double_quote: bool§escape: Option<u8>§comment: Option<u8>§stats: bool§datapackage_string: bool§stats_csv: String§threads: usizeImplementations§
source§impl Options
impl Options
sourcepub fn builder(
) -> OptionsBuilder<((), (), (), (), (), (), (), (), (), (), (), (), (), (), ())>
pub fn builder(
) -> OptionsBuilder<((), (), (), (), (), (), (), (), (), (), (), (), (), (), ())>
Create a builder for building Options.
On the builder, call .delete_input_csv(...)(optional), .seperator(...)(optional), .use_titles(...)(optional), .drop(...)(optional), .schema(...)(optional), .evolve(...)(optional), .delimiter(...)(optional), .quote(...)(optional), .double_quote(...)(optional), .escape(...)(optional), .comment(...)(optional), .stats(...)(optional), .datapackage_string(...)(optional), .stats_csv(...)(optional), .threads(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of Options.