Enum databend_driver::NumberValue 
source · pub enum NumberValue {
    Int8(i8),
    Int16(i16),
    Int32(i32),
    Int64(i64),
    UInt8(u8),
    UInt16(u16),
    UInt32(u32),
    UInt64(u64),
    Float32(f32),
    Float64(f64),
    Decimal128(i128, DecimalSize),
    Decimal256(i256, DecimalSize),
}Variants§
Int8(i8)
Int16(i16)
Int32(i32)
Int64(i64)
UInt8(u8)
UInt16(u16)
UInt32(u32)
UInt64(u64)
Float32(f32)
Float64(f64)
Decimal128(i128, DecimalSize)
Decimal256(i256, DecimalSize)
Trait Implementations§
source§impl Clone for NumberValue
 
impl Clone for NumberValue
source§fn clone(&self) -> NumberValue
 
fn clone(&self) -> NumberValue
Returns a copy of the value. Read more
1.0.0 · 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 NumberValue
 
impl Debug for NumberValue
source§impl Display for NumberValue
 
impl Display for NumberValue
source§impl PartialEq for NumberValue
 
impl PartialEq for NumberValue
source§fn eq(&self, other: &NumberValue) -> bool
 
fn eq(&self, other: &NumberValue) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NumberValue
Auto Trait Implementations§
impl Freeze for NumberValue
impl RefUnwindSafe for NumberValue
impl Send for NumberValue
impl Sync for NumberValue
impl Unpin for NumberValue
impl UnwindSafe for NumberValue
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