Trait typed_sql::conn::FromRow[][src]

pub trait FromRow<R: Row>: Sized {
    fn from_row(row: &R) -> Result<Self, R::Error>;
}

Required methods

fn from_row(row: &R) -> Result<Self, R::Error>[src]

Implementors