Enum sea_query::value::Value [−][src]
pub enum Value {
Show variants
Null,
Bool(bool),
TinyInt(i8),
SmallInt(i16),
Int(i32),
BigInt(i64),
TinyUnsigned(u8),
SmallUnsigned(u16),
Unsigned(u32),
BigUnsigned(u64),
Float(f32),
Double(f64),
String(Box<String>),
Bytes(Box<Vec<u8>>),
Json(Box<Json>),
DateTime(Box<NaiveDateTime>),
Uuid(Box<Uuid>),
Decimal(Box<Decimal>),
}Expand description
Value variants
Variants
Bool(bool)TinyInt(i8)SmallInt(i16)Int(i32)BigInt(i64)TinyUnsigned(u8)SmallUnsigned(u16)Unsigned(u32)BigUnsigned(u64)Float(f32)Double(f64)This is supported on crate feature
with-json only.DateTime(Box<NaiveDateTime>)This is supported on crate feature
with-chrono only.This is supported on crate feature
with-uuid only.This is supported on crate feature
with-rust_decimal only.Implementations
Trait Implementations
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for Valueimpl UnwindSafe for ValueBlanket Implementations
Mutably borrows from an owned value. Read more
Returns a reference to self as a ToSql trait object.
type Output = T
type Output = TShould always be Self
pub fn vzip(self) -> V