pub enum Variable {
Scalar(Value),
Frame(Columns),
}Expand description
A variable can be either a scalar value or a dataframe
Variants§
Scalar(Value)
A scalar value that can be used directly in expressions
Frame(Columns)
A dataframe (columns) that requires explicit conversion to scalar
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Variable
impl RefUnwindSafe for Variable
impl Send for Variable
impl Sync for Variable
impl Unpin for Variable
impl UnwindSafe for Variable
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