pub trait IErrorInfo_Impl: Sized {
    // Required methods
    fn GetGUID(&self) -> Result<GUID>;
    fn GetSource(&self) -> Result<BSTR>;
    fn GetDescription(&self) -> Result<BSTR>;
    fn GetHelpFile(&self) -> Result<BSTR>;
    fn GetHelpContext(&self) -> Result<u32>;
}

Required Methods§

fn GetGUID(&self) -> Result<GUID>

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

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

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

fn GetHelpContext(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§