pub trait ByName {
    // Provided methods
    fn by_name<R>(&self, name: &str) -> CDRSResult<Option<R>>
       where Self: IntoRustByName<R> { ... }
    fn r_by_name<R>(&self, name: &str) -> CDRSResult<R>
       where Self: IntoRustByName<R> { ... }
}

Provided Methods§

source

fn by_name<R>(&self, name: &str) -> CDRSResult<Option<R>>where Self: IntoRustByName<R>,

source

fn r_by_name<R>(&self, name: &str) -> CDRSResult<R>where Self: IntoRustByName<R>,

Implementors§