pub trait Decode<'a>: Sized {
// Required method
fn decode(value: ValueRef<'a>) -> Result<Self>;
}Expand description
A type that can be construced from sqlite value.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".