pub struct DataFrameCsvReadOptions {
pub sep: char,
pub has_header: bool,
pub dtypes: BTreeMap<String, DType>,
pub index_col: Option<String>,
pub na_values: Vec<String>,
}Fields§
§sep: char§has_header: bool§dtypes: BTreeMap<String, DType>§index_col: Option<String>§na_values: Vec<String>Trait Implementations§
Source§impl Clone for DataFrameCsvReadOptions
impl Clone for DataFrameCsvReadOptions
Source§fn clone(&self) -> DataFrameCsvReadOptions
fn clone(&self) -> DataFrameCsvReadOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DataFrameCsvReadOptions
impl Debug for DataFrameCsvReadOptions
Source§impl Default for DataFrameCsvReadOptions
impl Default for DataFrameCsvReadOptions
impl Eq for DataFrameCsvReadOptions
Source§impl PartialEq for DataFrameCsvReadOptions
impl PartialEq for DataFrameCsvReadOptions
Source§fn eq(&self, other: &DataFrameCsvReadOptions) -> bool
fn eq(&self, other: &DataFrameCsvReadOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DataFrameCsvReadOptions
Auto Trait Implementations§
impl Freeze for DataFrameCsvReadOptions
impl RefUnwindSafe for DataFrameCsvReadOptions
impl Send for DataFrameCsvReadOptions
impl Sync for DataFrameCsvReadOptions
impl Unpin for DataFrameCsvReadOptions
impl UnsafeUnpin for DataFrameCsvReadOptions
impl UnwindSafe for DataFrameCsvReadOptions
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.