pub trait FromRow: Sized {
// Required methods
fn from_row(row: Row) -> Result<Self, Error>;
fn from_row_using_position(row: Row) -> Result<Self, Error>;
}
Expand description
Something which can be decoded from a Row
.
Auto-implemented for tuples of size 8 or less.