pub trait AsRust {
    // Provided methods
    fn as_rust<R>(&self) -> CDRSResult<Option<R>>
       where Self: AsRustType<R> { ... }
    fn as_r_rust<T>(&self) -> CDRSResult<T>
       where Self: AsRustType<T> { ... }
}

Provided Methods§

source

fn as_rust<R>(&self) -> CDRSResult<Option<R>>where Self: AsRustType<R>,

source

fn as_r_rust<T>(&self) -> CDRSResult<T>where Self: AsRustType<T>,

Implementors§