Struct datafusion_python::datafusion_common::file_options::parquet_writer::ParquetWriterOptions
source · pub struct ParquetWriterOptions {
pub writer_options: WriterProperties,
}Expand description
Options for writing parquet files
Fields§
§writer_options: WriterPropertiesparquet-rs writer properties
Implementations§
source§impl ParquetWriterOptions
impl ParquetWriterOptions
pub fn new(writer_options: WriterProperties) -> ParquetWriterOptions
source§impl ParquetWriterOptions
impl ParquetWriterOptions
pub fn writer_options(&self) -> &WriterProperties
Trait Implementations§
source§impl Clone for ParquetWriterOptions
impl Clone for ParquetWriterOptions
source§fn clone(&self) -> ParquetWriterOptions
fn clone(&self) -> ParquetWriterOptions
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 ParquetWriterOptions
impl Debug for ParquetWriterOptions
source§impl TryFrom<&TableParquetOptions> for ParquetWriterOptions
impl TryFrom<&TableParquetOptions> for ParquetWriterOptions
source§type Error = DataFusionError
type Error = DataFusionError
The type returned in the event of a conversion error.
source§fn try_from(
parquet_table_options: &TableParquetOptions,
) -> Result<ParquetWriterOptions, DataFusionError>
fn try_from( parquet_table_options: &TableParquetOptions, ) -> Result<ParquetWriterOptions, DataFusionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ParquetWriterOptions
impl RefUnwindSafe for ParquetWriterOptions
impl Send for ParquetWriterOptions
impl Sync for ParquetWriterOptions
impl Unpin for ParquetWriterOptions
impl UnwindSafe for ParquetWriterOptions
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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