pub trait IDataModelScriptClient_Impl: Sized {
    // Required method
    fn ReportError(
        &self,
        errclass: ErrorClass,
        hrfail: HRESULT,
        message: &PCWSTR,
        line: u32,
        position: u32,
    ) -> Result<()>;
}

Required Methods§

fn ReportError( &self, errclass: ErrorClass, hrfail: HRESULT, message: &PCWSTR, line: u32, position: u32, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§