pub trait IGPMStatusMessage_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn ObjectPath(&self) -> Result<BSTR>;
    fn ErrorCode(&self) -> Result<()>;
    fn ExtensionName(&self) -> Result<BSTR>;
    fn SettingsName(&self) -> Result<BSTR>;
    fn OperationCode(&self) -> Result<()>;
    fn Message(&self) -> Result<BSTR>;
}

Required Methods§

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

fn ErrorCode(&self) -> Result<()>

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

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

fn OperationCode(&self) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§