Trait ByName

Source
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>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§