pub struct FormatOptions {
pub csv: Option<CsvOptions>,
pub json: Option<JsonOptions>,
pub parquet: Option<ParquetOptions>,
pub hdf5: Option<Hdf5Options>,
pub numpy: Option<NumpyOptions>,
}Expand description
Format-specific options container
Fields§
§csv: Option<CsvOptions>§json: Option<JsonOptions>§parquet: Option<ParquetOptions>§hdf5: Option<Hdf5Options>§numpy: Option<NumpyOptions>Trait Implementations§
Source§impl Clone for FormatOptions
impl Clone for FormatOptions
Source§fn clone(&self) -> FormatOptions
fn clone(&self) -> FormatOptions
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 FormatOptions
impl Debug for FormatOptions
Source§impl Default for FormatOptions
impl Default for FormatOptions
Source§fn default() -> FormatOptions
fn default() -> FormatOptions
Returns the “default value” for a type. Read more
Source§impl From<CsvOptions> for FormatOptions
impl From<CsvOptions> for FormatOptions
Source§fn from(csv: CsvOptions) -> Self
fn from(csv: CsvOptions) -> Self
Converts to this type from the input type.
Source§impl From<JsonOptions> for FormatOptions
impl From<JsonOptions> for FormatOptions
Source§fn from(json: JsonOptions) -> Self
fn from(json: JsonOptions) -> Self
Converts to this type from the input type.
Source§impl From<ParquetOptions> for FormatOptions
impl From<ParquetOptions> for FormatOptions
Source§fn from(parquet: ParquetOptions) -> Self
fn from(parquet: ParquetOptions) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FormatOptions
impl RefUnwindSafe for FormatOptions
impl Send for FormatOptions
impl Sync for FormatOptions
impl Unpin for FormatOptions
impl UnwindSafe for FormatOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more