pub enum DataFrameOrDict {
DataFrame(DataFrame),
Dict(HashMap<String, DataValue>),
}Variants§
Implementations§
Trait Implementations§
Source§impl From<DataFrameOrDict> for DataFrame
impl From<DataFrameOrDict> for DataFrame
Source§fn from(value: DataFrameOrDict) -> Self
fn from(value: DataFrameOrDict) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DataFrameOrDict
impl RefUnwindSafe for DataFrameOrDict
impl Send for DataFrameOrDict
impl Sync for DataFrameOrDict
impl Unpin for DataFrameOrDict
impl UnsafeUnpin for DataFrameOrDict
impl UnwindSafe for DataFrameOrDict
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