Crate cppmm_refptr

Source

Structs§

Ref
Represents a pointer to a type that is owned by some C++ object, where the pointer type is also newtyped and we wish to Deref to the newtype rather than the pointer.
RefMut
Represents a pointer to a type that is owned by some C++ object, where the pointer type is also newtyped and we wish to Deref to the newtype rather than the pointer.

Traits§

OpaquePtr
This trait describes the relationship between an opaque pointer to a C++ object and the newtype we use to wrap it in Rust.