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;
}The row trait which is used for FromSqlRow. Apps should not need to
concern themselves with this trait.