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