pub struct DescribeOptions {
pub delimiter: Option<u8>,
pub quote: Option<u8>,
pub stats: bool,
pub stats_csv: String,
pub threads: usize,
pub all_strings: bool,
}Fields§
§delimiter: Option<u8>§quote: Option<u8>§stats: bool§stats_csv: String§threads: usize§all_strings: boolImplementations§
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), .all_strings(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of Options.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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