pub enum DataFrameDictResult {
Mapping(BTreeMap<String, Vec<(String, Scalar)>>),
List(BTreeMap<String, Vec<Scalar>>),
Records(Vec<Vec<(String, Scalar)>>),
Series(BTreeMap<String, Series>),
Split(DataFrameDictSplit),
Tight(DataFrameDictTight),
}Variants§
Mapping(BTreeMap<String, Vec<(String, Scalar)>>)
List(BTreeMap<String, Vec<Scalar>>)
Records(Vec<Vec<(String, Scalar)>>)
Series(BTreeMap<String, Series>)
Split(DataFrameDictSplit)
Tight(DataFrameDictTight)
Implementations§
Source§impl DataFrameDictResult
impl DataFrameDictResult
pub fn as_mapping(&self) -> Option<&BTreeMap<String, Vec<(String, Scalar)>>>
pub fn as_list(&self) -> Option<&BTreeMap<String, Vec<Scalar>>>
pub fn as_records(&self) -> Option<&Vec<Vec<(String, Scalar)>>>
pub fn as_series(&self) -> Option<&BTreeMap<String, Series>>
pub fn as_tight(&self) -> Option<&DataFrameDictTight>
pub fn as_split(&self) -> Option<&DataFrameDictSplit>
Trait Implementations§
Source§impl Clone for DataFrameDictResult
impl Clone for DataFrameDictResult
Source§fn clone(&self) -> DataFrameDictResult
fn clone(&self) -> DataFrameDictResult
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 DataFrameDictResult
impl Debug for DataFrameDictResult
Source§impl PartialEq for DataFrameDictResult
impl PartialEq for DataFrameDictResult
Source§fn eq(&self, other: &DataFrameDictResult) -> bool
fn eq(&self, other: &DataFrameDictResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DataFrameDictResult
Auto Trait Implementations§
impl Freeze for DataFrameDictResult
impl RefUnwindSafe for DataFrameDictResult
impl Send for DataFrameDictResult
impl Sync for DataFrameDictResult
impl Unpin for DataFrameDictResult
impl UnsafeUnpin for DataFrameDictResult
impl UnwindSafe for DataFrameDictResult
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