Trait cassandra_protocol::types::IntoRustByIndex
source · [−]pub trait IntoRustByIndex<R> {
fn get_by_index(&self, index: usize) -> CDRSResult<Option<R>>;
fn get_r_by_index(&self, index: usize) -> CDRSResult<R> { ... }
}
Expand description
Should be used to return a single column as Rust value by its name.
Required Methods
source
fn get_by_index(&self, index: usize) -> CDRSResult<Option<R>>
Provided Methods
source