pub trait IMsmErrors_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn get_Item(&self, item: i32) -> Result<IMsmError>;
    fn Count(&self, count: *mut i32) -> Result<()>;
    fn _NewEnum(&self) -> Result<IUnknown>;
}

Required Methods§

fn get_Item(&self, item: i32) -> Result<IMsmError>

fn Count(&self, count: *mut i32) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§