Struct polars_plan::prelude::IpcScanOptions
source · [−]pub struct IpcScanOptions {
pub n_rows: Option<usize>,
pub with_columns: Option<Arc<Vec<String>>>,
pub cache: bool,
pub row_count: Option<RowCount>,
pub rechunk: bool,
pub memmap: bool,
}
Fields
n_rows: Option<usize>
with_columns: Option<Arc<Vec<String>>>
cache: bool
row_count: Option<RowCount>
rechunk: bool
memmap: bool
Trait Implementations
sourceimpl Clone for IpcScanOptions
impl Clone for IpcScanOptions
sourcefn clone(&self) -> IpcScanOptions
fn clone(&self) -> IpcScanOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for IpcScanOptions
impl Debug for IpcScanOptions
sourceimpl<'de> Deserialize<'de> for IpcScanOptions
impl<'de> Deserialize<'de> for IpcScanOptions
sourcefn 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
sourceimpl From<IpcScanOptions> for IpcScanOptionsInner
impl From<IpcScanOptions> for IpcScanOptionsInner
sourcefn from(options: IpcScanOptions) -> Self
fn from(options: IpcScanOptions) -> Self
Converts to this type from the input type.
sourceimpl Serialize for IpcScanOptions
impl Serialize for IpcScanOptions
Auto Trait Implementations
impl RefUnwindSafe for IpcScanOptions
impl Send for IpcScanOptions
impl Sync for IpcScanOptions
impl Unpin for IpcScanOptions
impl UnwindSafe for IpcScanOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more