Structs§
- BoxPool
- A pool to hold boxes to extend their lifetime. This is typically useful to build raw COM structures that require raw pointers in struct fields.
Traits§
- GetRaw
- Trait to get a raw pointer from a type. Type should implement this trait if it can return a raw pointer without BoxPool.
- GetRaw
With BoxPool - 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.