pub trait HasDispatch<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§

source

fn get_idispatch(&self) -> &IDispatch

Get the IDispatch object for low-level access to this component.

Implementors§