[go: up one dir, main page]

diesel 0.7.1

A safe, extensible ORM and Query builder
Documentation
1
2
3
4
5
6
use backend::Backend;

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