pub trait IComExceptionEvents_Impl: Sized {
    // Required method
    fn OnExceptionUser(
        &self,
        pinfo: *const COMSVCSEVENTINFO,
        code: u32,
        address: u64,
        pszstacktrace: &PCWSTR
    ) -> Result<()>;
}

Required Methods§

fn OnExceptionUser( &self, pinfo: *const COMSVCSEVENTINFO, code: u32, address: u64, pszstacktrace: &PCWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§