Trait cassandra_protocol::types::IntoRustByName[][src]

pub trait IntoRustByName<R> {
    fn get_by_name(&self, name: &str) -> CDRSResult<Option<R>>;

    fn get_r_by_name(&self, name: &str) -> CDRSResult<R> { ... }
}
Expand description

Should be used to return a single column as Rust value by its name.

Required methods

Provided methods

Implementors