pub trait HasIDispatch<T = Self> {
// Required method
fn get_idispatch(&self) -> &IDispatch;
}
Expand description
A component that has an IDispatch value. Every component needs this, and this trait guarantees that.
Required Methods§
Sourcefn get_idispatch(&self) -> &IDispatch
fn get_idispatch(&self) -> &IDispatch
Get the IDispatch object for low-level access to this component.