pub trait FromDatabaseValue {
// Required method
fn copy_from_database(bytes: &[u8]) -> Result<Self>
where Self: Sized;
}
pub trait FromDatabaseValue {
// Required method
fn copy_from_database(bytes: &[u8]) -> Result<Self>
where Self: Sized;
}