Trait cdrs_tokio::types::ByName

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

Provided Methods§

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§