1 2 3 4 5 6 7 8 9 10
//! Implementation for Extended Query #[derive(Debug, PartialEq)] pub enum BindValue { String(String), Int64(i64), Float64(f64), Bool(bool), Null, }