GetRawWithBoxPool

Trait GetRawWithBoxPool 

Source
pub trait GetRawWithBoxPool<T> {
    // Required method
    fn get_raw_with_pool(&self, pool: &mut BoxPool) -> T;
}
Expand description

Trait to get a raw pointer from a type, using a BoxPool to hold the box. This is useful to implement conversions to raw COM types that require raw pointers in struct fields.

Required Methods§

Source

fn get_raw_with_pool(&self, pool: &mut BoxPool) -> T

Implementors§