pub struct JsonWriterOptions {
pub compression: CompressionTypeVariant,
}
Expand description
Options for writing JSON files
Fields§
§compression: CompressionTypeVariant
Implementations§
source§impl JsonWriterOptions
impl JsonWriterOptions
pub fn new(compression: CompressionTypeVariant) -> Self
Trait Implementations§
source§impl Clone for JsonWriterOptions
impl Clone for JsonWriterOptions
source§fn clone(&self) -> JsonWriterOptions
fn clone(&self) -> JsonWriterOptions
Returns a copy 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 JsonWriterOptions
impl Debug for JsonWriterOptions
source§impl TryFrom<(&ConfigOptions, &StatementOptions)> for JsonWriterOptions
impl TryFrom<(&ConfigOptions, &StatementOptions)> for JsonWriterOptions
§type Error = DataFusionError
type Error = DataFusionError
The type returned in the event of a conversion error.
source§fn try_from(value: (&ConfigOptions, &StatementOptions)) -> Result<Self>
fn try_from(value: (&ConfigOptions, &StatementOptions)) -> Result<Self>
Performs the conversion.
Auto Trait Implementations§
impl RefUnwindSafe for JsonWriterOptions
impl Send for JsonWriterOptions
impl Sync for JsonWriterOptions
impl Unpin for JsonWriterOptions
impl UnwindSafe for JsonWriterOptions
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