Trait diesel::types::FromSqlRow [] [src]

pub trait FromSqlRow<A: NativeSqlType>: Sized {
    fn build_from_row<T: Row>(row: &mut T) -> Result<Self, Box<Error>>;
}

How to deserialize multiple fields, with a known type. This type is implemented for tuples of various sizes.

Required Methods

fn build_from_row<T: Row>(row: &mut T) -> Result<Self, Box<Error>>

Implementors