1use crate::SqliteValue; 2use rbdc::Error; 3 4pub trait Decode { 5 fn decode(value: SqliteValue) -> Result<Self, Error> 6 where 7 Self: Sized; 8}