Trait cassandra_protocol::types::ByIndex
source · [−]pub trait ByIndex {
fn by_index<R>(&self, index: usize) -> CDRSResult<Option<R>>
where
Self: IntoRustByIndex<R>,
{ ... }
fn r_by_index<R>(&self, index: usize) -> CDRSResult<R>
where
Self: IntoRustByIndex<R>,
{ ... }
}
Provided Methods
sourcefn by_index<R>(&self, index: usize) -> CDRSResult<Option<R>>where
fn by_index<R>(&self, index: usize) -> CDRSResult<Option<R>>where
Self: IntoRustByIndex<R>,
sourcefn r_by_index<R>(&self, index: usize) -> CDRSResult<R>where