pub struct IpcWriterOptions {
pub compression: Option<IpcCompression>,
pub maintain_order: bool,
}
Available on crate features
ipc
or ipc_streaming
only.Fields§
§compression: Option<IpcCompression>
Data page compression
maintain_order: bool
maintain the order the data was processed
Implementations§
Trait Implementations§
Source§impl Clone for IpcWriterOptions
impl Clone for IpcWriterOptions
Source§fn clone(&self) -> IpcWriterOptions
fn clone(&self) -> IpcWriterOptions
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 IpcWriterOptions
impl Debug for IpcWriterOptions
Source§impl Default for IpcWriterOptions
impl Default for IpcWriterOptions
Source§fn default() -> IpcWriterOptions
fn default() -> IpcWriterOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IpcWriterOptions
impl<'de> Deserialize<'de> for IpcWriterOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for IpcWriterOptions
impl Hash for IpcWriterOptions
Source§impl PartialEq for IpcWriterOptions
impl PartialEq for IpcWriterOptions
Source§impl Serialize for IpcWriterOptions
impl Serialize for IpcWriterOptions
Source§impl WriteDataFrameToFile for IpcWriterOptions
Available on crate features parquet
and ipc
only.
impl WriteDataFrameToFile for IpcWriterOptions
Available on crate features
parquet
and ipc
only.impl Copy for IpcWriterOptions
impl Eq for IpcWriterOptions
impl StructuralPartialEq for IpcWriterOptions
Auto Trait Implementations§
impl Freeze for IpcWriterOptions
impl RefUnwindSafe for IpcWriterOptions
impl Send for IpcWriterOptions
impl Sync for IpcWriterOptions
impl Unpin for IpcWriterOptions
impl UnwindSafe for IpcWriterOptions
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
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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