Type Alias Value
Source pub type Value = Value;
pub enum Value {
Null,
Integer(i64),
Real(f64),
Text(String),
Blob(Vec<u8>),
}
The value is a NULL
value.
The value is a signed integer.
The value is a floating point number.
The value is a text string.
The value is a blob of data