pub trait IMtsEventInfo_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Names(&self) -> Result<IUnknown>;
    fn DisplayName(&self) -> Result<BSTR>;
    fn EventID(&self) -> Result<BSTR>;
    fn Count(&self) -> Result<i32>;
    fn get_Value(&self, skey: &BSTR) -> Result<VARIANT>;
}

Required Methods§

fn Names(&self) -> Result<IUnknown>

fn DisplayName(&self) -> Result<BSTR>

fn EventID(&self) -> Result<BSTR>

fn Count(&self) -> Result<i32>

fn get_Value(&self, skey: &BSTR) -> Result<VARIANT>

Object Safety§

This trait is not object safe.

Implementors§