Trait marine_sqlite_connector::Bindable[][src]

pub trait Bindable {
    fn bind(self, _: &mut Statement, _: usize) -> Result<()>;
}

A type suitable for binding to a prepared statement.

Required methods

fn bind(self, _: &mut Statement, _: usize) -> Result<()>[src]

Bind to a parameter.

The leftmost parameter has the index 1.

Loading content...

Implementations on Foreign Types

impl Bindable for &[u8][src]

fn bind(self, statement: &mut Statement, i: usize) -> Result<()>[src]

impl Bindable for f64[src]

fn bind(self, statement: &mut Statement, i: usize) -> Result<()>[src]

impl Bindable for i64[src]

fn bind(self, statement: &mut Statement, i: usize) -> Result<()>[src]

impl<'l> Bindable for &'l str[src]

fn bind(self, statement: &mut Statement, i: usize) -> Result<()>[src]

impl Bindable for ()[src]

fn bind(self, statement: &mut Statement, i: usize) -> Result<()>[src]

impl<T: Bindable> Bindable for Option<T>[src]

fn bind(self, statement: &mut Statement, i: usize) -> Result<()>[src]

Loading content...

Implementors

impl Bindable for &Value[src]

fn bind(self, statement: &mut Statement, i: usize) -> Result<()>[src]

Loading content...