Trait windows::Win32::System::Ole::ICreateErrorInfo_Impl

pub trait ICreateErrorInfo_Impl: Sized {
    // 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<()>

Object Safety§

This trait is not object safe.

Implementors§