Trait cdrs_tokio::types::ByIndex

source ·
pub trait ByIndex {
    // Provided methods
    fn by_index<R>(&self, index: usize) -> Result<Option<R>, Error>
       where Self: IntoRustByIndex<R> { ... }
    fn r_by_index<R>(&self, index: usize) -> Result<R, Error>
       where Self: IntoRustByIndex<R> { ... }
}

Provided Methods§

source

fn by_index<R>(&self, index: usize) -> Result<Option<R>, Error>
where Self: IntoRustByIndex<R>,

source

fn r_by_index<R>(&self, index: usize) -> Result<R, Error>
where Self: IntoRustByIndex<R>,

Object Safety§

This trait is not object safe.

Implementors§