1
2
3
4
5
6
7
8
use crate::SqliteValue;
use rbdc::Error;

pub trait Decode {
    fn decode(value: SqliteValue) -> Result<Self, Error>
    where
        Self: Sized;
}