Trait cassandra_cpp::BindRustType [] [src]

pub trait BindRustType<T> {
    fn bind(&mut self, index: usize, value: T) -> Result<&mut Statement>;
fn bind_by_name(&mut self, col: &str, value: T) -> Result<&mut Statement>; }

All Rust types that can be bound to a cassandra statement //FIXME not yet implemented Any rust type that can have a default bind implementation

Required Methods

binds a rust type to C* by index

binds a rust type to C* by name

Implementors