Trait TryGetable
pub trait TryGetable<'a, DB: Database>where
Self: Sized + 'a,{
// Required method
fn try_get_from<I>(row: &'a DB::Row, index: I) -> Result<Self, Error>
where I: ColumnIndex<DB::Row>;
}Required Methods§
fn try_get_from<I>(row: &'a DB::Row, index: I) -> Result<Self, Error>where
I: ColumnIndex<DB::Row>,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.