Trait FromRow

Source
pub trait FromRow {
    // Required method
    fn from_row(row: &Row<'_>) -> Result<Self, Error>
       where Self: Sized;
}

Required Methods§

Source

fn from_row(row: &Row<'_>) -> Result<Self, Error>
where Self: Sized,

Implementors§