pub trait ByName {
    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

Implementors