pub trait IDebugHostErrorSink_Impl: Sized {
    // Required method
    fn ReportError(
        &self,
        errclass: ErrorClass,
        hrerror: HRESULT,
        message: &PCWSTR,
    ) -> Result<()>;
}

Required Methods§

fn ReportError( &self, errclass: ErrorClass, hrerror: HRESULT, message: &PCWSTR, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§