windows::Win32::System::Ole

Trait IDispError_Impl

pub trait IDispError_Impl: IUnknownImpl {
    // Required methods
    fn QueryErrorInfo(&self, guiderrortype: &GUID) -> Result<IDispError>;
    fn GetNext(&self) -> Result<IDispError>;
    fn GetHresult(&self) -> Result<HRESULT>;
    fn GetSource(&self) -> Result<BSTR>;
    fn GetHelpInfo(
        &self,
        pbstrfilename: *mut BSTR,
        pdwcontext: *mut u32,
    ) -> Result<()>;
    fn GetDescription(&self) -> Result<BSTR>;
}

Required Methods§

fn QueryErrorInfo(&self, guiderrortype: &GUID) -> Result<IDispError>

fn GetNext(&self) -> Result<IDispError>

fn GetHresult(&self) -> Result<HRESULT>

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

fn GetHelpInfo( &self, pbstrfilename: *mut BSTR, pdwcontext: *mut u32, ) -> Result<()>

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§