pub enum DataFrameArithmeticOperand<'a> {
DataFrame(&'a DataFrame),
Scalar(f64),
}Variants§
Trait Implementations§
Source§impl<'a> Clone for DataFrameArithmeticOperand<'a>
impl<'a> Clone for DataFrameArithmeticOperand<'a>
Source§fn clone(&self) -> DataFrameArithmeticOperand<'a>
fn clone(&self) -> DataFrameArithmeticOperand<'a>
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 moreimpl<'a> Copy for DataFrameArithmeticOperand<'a>
Source§impl<'a> Debug for DataFrameArithmeticOperand<'a>
impl<'a> Debug for DataFrameArithmeticOperand<'a>
Source§impl<'a> From<&'a DataFrame> for DataFrameArithmeticOperand<'a>
impl<'a> From<&'a DataFrame> for DataFrameArithmeticOperand<'a>
Source§impl<'a> From<f64> for DataFrameArithmeticOperand<'a>
impl<'a> From<f64> for DataFrameArithmeticOperand<'a>
Source§impl<'a> From<i32> for DataFrameArithmeticOperand<'a>
impl<'a> From<i32> for DataFrameArithmeticOperand<'a>
Source§impl<'a> From<i64> for DataFrameArithmeticOperand<'a>
impl<'a> From<i64> for DataFrameArithmeticOperand<'a>
Source§impl<'a> PartialEq for DataFrameArithmeticOperand<'a>
impl<'a> PartialEq for DataFrameArithmeticOperand<'a>
Source§fn eq(&self, other: &DataFrameArithmeticOperand<'a>) -> bool
fn eq(&self, other: &DataFrameArithmeticOperand<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for DataFrameArithmeticOperand<'a>
Auto Trait Implementations§
impl<'a> Freeze for DataFrameArithmeticOperand<'a>
impl<'a> RefUnwindSafe for DataFrameArithmeticOperand<'a>
impl<'a> Send for DataFrameArithmeticOperand<'a>
impl<'a> Sync for DataFrameArithmeticOperand<'a>
impl<'a> Unpin for DataFrameArithmeticOperand<'a>
impl<'a> UnsafeUnpin for DataFrameArithmeticOperand<'a>
impl<'a> UnwindSafe for DataFrameArithmeticOperand<'a>
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