[][src]Trait fce_sqlite_connector::Bindable

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<()>

Bind to a parameter.

The leftmost parameter has the index 1.

Loading content...

Implementations on Foreign Types

impl<'_> Bindable for &'_ [u8][src]

impl Bindable for f64[src]

impl Bindable for i64[src]

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

impl Bindable for ()[src]

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

Loading content...

Implementors

impl<'_> Bindable for &'_ Value[src]

Loading content...