Trait sqlite::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 first parameter has index 1.

Loading content...

Implementations on Foreign Types

impl<'l> Bindable for &'l [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<'l> Bindable for &'l Value[src]

Loading content...