Struct csvs_convert::DescribeOptions
source · pub struct DescribeOptions {
pub delimiter: Option<u8>,
pub quote: Option<u8>,
pub stats: bool,
pub stats_csv: String,
pub threads: usize,
}Fields§
§delimiter: Option<u8>§quote: Option<u8>§stats: 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 .delimiter(...)(optional), .quote(...)(optional), .stats(...)(optional), .stats_csv(...)(optional), .threads(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of Options.