Struct polars_plan::prelude::IpcScanOptionsInner
source · pub struct IpcScanOptionsInner {
pub n_rows: Option<usize>,
pub with_columns: Option<Arc<Vec<String>>>,
pub cache: bool,
pub row_count: Option<RowCount>,
pub rechunk: bool,
pub file_counter: FileCount,
pub memmap: bool,
}
Fields§
§n_rows: Option<usize>
§with_columns: Option<Arc<Vec<String>>>
§cache: bool
§row_count: Option<RowCount>
§rechunk: bool
§file_counter: FileCount
§memmap: bool
Trait Implementations§
source§impl Clone for IpcScanOptionsInner
impl Clone for IpcScanOptionsInner
source§fn clone(&self) -> IpcScanOptionsInner
fn clone(&self) -> IpcScanOptionsInner
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 IpcScanOptionsInner
impl Debug for IpcScanOptionsInner
source§impl From<IpcScanOptions> for IpcScanOptionsInner
impl From<IpcScanOptions> for IpcScanOptionsInner
source§fn from(options: IpcScanOptions) -> Self
fn from(options: IpcScanOptions) -> Self
Converts to this type from the input type.
source§impl PartialEq<IpcScanOptionsInner> for IpcScanOptionsInner
impl PartialEq<IpcScanOptionsInner> for IpcScanOptionsInner
source§fn eq(&self, other: &IpcScanOptionsInner) -> bool
fn eq(&self, other: &IpcScanOptionsInner) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IpcScanOptionsInner
impl StructuralEq for IpcScanOptionsInner
impl StructuralPartialEq for IpcScanOptionsInner
Auto Trait Implementations§
impl RefUnwindSafe for IpcScanOptionsInner
impl Send for IpcScanOptionsInner
impl Sync for IpcScanOptionsInner
impl Unpin for IpcScanOptionsInner
impl UnwindSafe for IpcScanOptionsInner
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.