Trait sqlite3::Bindable [] [src]

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

A type suitable for binding to a prepared statement.

Required Methods

Bind to a parameter.

The leftmost parameter has the index 1.

Implementations on Foreign Types

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

[src]

impl Bindable for f64
[src]

[src]

impl Bindable for i64
[src]

[src]

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

[src]

impl Bindable for ()
[src]

[src]

Implementors