pub enum Value<'a> {
}
Expand description
This enum represents a value
Variants§
Null(NullType)
null representation
Ident(&'a str)
Representation of an identifier, e.g. a column. This variant will not be escaped, so do not pass unchecked data to it.
Column
Representation of a column name with an optional table name
Choice(&'a str)
Representation of choices
String(&'a str)
String representation
I64(i64)
i64 representation
I32(i32)
i32 representation
I16(i16)
i16 representation
Bool(bool)
Bool representation
F64(f64)
f64 representation
F32(f32)
f32 representation
Binary(&'a [u8])
binary representation
NaiveTime(NaiveTime)
Naive Time representation
NaiveDate(NaiveDate)
Naive Date representation
NaiveDateTime(NaiveDateTime)
Naive DateTime representation