pub trait IErrorLog_Impl: Sized {
    // Required method
    fn AddError(
        &self,
        pszpropname: &PCWSTR,
        pexcepinfo: *const EXCEPINFO
    ) -> Result<()>;
}

Required Methods§

fn AddError( &self, pszpropname: &PCWSTR, pexcepinfo: *const EXCEPINFO ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§