windows::Win32::System::Ole

Trait ICreateErrorInfo_Impl

pub trait ICreateErrorInfo_Impl: IUnknownImpl {
    // Required methods
    fn SetGUID(&self, rguid: *const GUID) -> Result<()>;
    fn SetSource(&self, szsource: &PCWSTR) -> Result<()>;
    fn SetDescription(&self, szdescription: &PCWSTR) -> Result<()>;
    fn SetHelpFile(&self, szhelpfile: &PCWSTR) -> Result<()>;
    fn SetHelpContext(&self, dwhelpcontext: u32) -> Result<()>;
}

Required Methods§

fn SetGUID(&self, rguid: *const GUID) -> Result<()>

fn SetSource(&self, szsource: &PCWSTR) -> Result<()>

fn SetDescription(&self, szdescription: &PCWSTR) -> Result<()>

fn SetHelpFile(&self, szhelpfile: &PCWSTR) -> Result<()>

fn SetHelpContext(&self, dwhelpcontext: u32) -> Result<()>

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§