Trait butane::db::BackendRow[][src]

pub trait BackendRow {
    fn get(&self, idx: usize, ty: SqlType) -> Result<SqlValRef<'_>, Error>;
fn len(&self) -> usize; fn is_empty(&self) -> bool { ... } }
Expand description

Backend-specific row abstraction. Only implementors of new backends need use this trait directly.

Required methods

Provided methods

Implementations on Foreign Types

Implementors