Trait cassandra_protocol::types::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>,

Object Safety§

This trait is not object safe.

Implementors§