pub trait ITCallInfo2_Impl: Sized + ITCallInfo_Impl {
    // Required methods
    fn get_EventFilter(
        &self,
        tapievent: TAPI_EVENT,
        lsubevent: i32
    ) -> Result<VARIANT_BOOL>;
    fn put_EventFilter(
        &self,
        tapievent: TAPI_EVENT,
        lsubevent: i32,
        benable: VARIANT_BOOL
    ) -> Result<()>;
}

Required Methods§

fn get_EventFilter( &self, tapievent: TAPI_EVENT, lsubevent: i32 ) -> Result<VARIANT_BOOL>

fn put_EventFilter( &self, tapievent: TAPI_EVENT, lsubevent: i32, benable: VARIANT_BOOL ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§