pub trait ITPhoneEvent_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Phone(&self) -> Result<ITPhone>;
    fn Event(&self) -> Result<PHONE_EVENT>;
    fn ButtonState(&self) -> Result<PHONE_BUTTON_STATE>;
    fn HookSwitchState(&self) -> Result<PHONE_HOOK_SWITCH_STATE>;
    fn HookSwitchDevice(&self) -> Result<PHONE_HOOK_SWITCH_DEVICE>;
    fn RingMode(&self) -> Result<i32>;
    fn ButtonLampId(&self) -> Result<i32>;
    fn NumberGathered(&self) -> Result<BSTR>;
    fn Call(&self) -> Result<ITCallInfo>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§