1 2 3 4 5 6 7 8 9 10 11 12 13 14
/// An owned sqlite value. #[derive(Debug, Clone)] pub enum Value { /// A SQL `null`. Null, /// A signed integer. I64(i64), /// A floating-point value. F64(f64), /// Binary data. Bytes(Vec<u8>), /// Text data. String(String), }