pub enum OutFormat {
Csv,
Feather,
Ndjson,
Parquet,
}Expand description
Output file format for data conversion.
All variants are always present regardless of enabled features. Attempting to use a format whose feature is not enabled will result in a compile-time error in the writer code.
Variants§
Csv
Comma-separated values.
Feather
Feather (Arrow IPC) format.
Ndjson
Newline-delimited JSON.
Parquet
Apache Parquet columnar format.
Trait Implementations§
impl Copy for OutFormat
Auto Trait Implementations§
impl Freeze for OutFormat
impl RefUnwindSafe for OutFormat
impl Send for OutFormat
impl Sync for OutFormat
impl Unpin for OutFormat
impl UnwindSafe for OutFormat
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