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

Implementors