pub trait Value {
// Required methods
fn blob(&self) -> &[u8];
fn double(&self) -> f64;
fn int(&self) -> i32;
fn int64(&self) -> int64;
fn text(&self) -> &str;
fn bytes(&self) -> i32;
fn value_type(&self) -> ColumnType;
}