Trait diesel::row::Row [] [src]

pub trait Row<DB: Backend> {
    fn take(&mut self) -> Option<&DB::RawValue>;
    fn next_is_null(&self, count: usize) -> bool;

    fn advance(&mut self, count: usize) { ... }
}

The row trait which is used for FromSqlRow. Apps should not need to concern themselves with this trait.

Required Methods

Provided Methods

Implementors