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),
}
Variants§
Int8(i8)
Int16(i16)
Int32(i32)
Int64(i64)
UInt8(u8)
UInt16(u16)
UInt32(u32)
UInt64(u64)
Float32(f32)
Float64(f64)
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<NumberValue> for NumberValue
impl PartialEq<NumberValue> 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 ==
.