pub trait GetRaw<T> {
// Required method
fn get_raw(&self) -> T;
}
Expand description
Trait to get a raw pointer from a type. Type should implement this trait if it can return a raw pointer without BoxPool.
pub trait GetRaw<T> {
// Required method
fn get_raw(&self) -> T;
}
Trait to get a raw pointer from a type. Type should implement this trait if it can return a raw pointer without BoxPool.