pub unsafe trait ComInterface: AsComPtr<IUnknown> {
// Required method
fn iid() -> IID;
}
Expand description
Helper trait for ComPtr
. Implemented automatically by the
com_interface!
macro.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.