pub enum Scalar {
Null,
Boolean(bool),
Int(i32),
Long(i64),
Float(f32),
Double(f64),
Date(i32),
Timestamp(NaiveDateTime),
}
Variants§
Trait Implementations§
source§impl<'__enum_kinds1> From<&'__enum_kinds1 Scalar> for ScalarKind
impl<'__enum_kinds1> From<&'__enum_kinds1 Scalar> for ScalarKind
source§impl<'__enum_kinds1> From<Scalar> for ScalarKind
impl<'__enum_kinds1> From<Scalar> for ScalarKind
source§impl PartialEq<Scalar> for Scalar
impl PartialEq<Scalar> for Scalar
impl Copy for Scalar
impl StructuralPartialEq for Scalar
Auto Trait Implementations§
impl RefUnwindSafe for Scalar
impl Send for Scalar
impl Sync for Scalar
impl Unpin for Scalar
impl UnwindSafe for Scalar
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