com_rs

Trait ComInterface

Source
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§

Source

fn iid() -> IID

Get the IID associated with a COM interface struct.

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.

Implementors§