pub trait TryFromRow: Sized {
    fn try_from_row(row: Row) -> Result<Self>;
}

Required Methods

Implementors