pub trait IComObjectConstructionEvents_Impl: Sized {
    // Required method
    fn OnObjectConstruct(
        &self,
        pinfo: *const COMSVCSEVENTINFO,
        guidobject: *const GUID,
        sconstructstring: &PCWSTR,
        oid: u64
    ) -> Result<()>;
}

Required Methods§

fn OnObjectConstruct( &self, pinfo: *const COMSVCSEVENTINFO, guidobject: *const GUID, sconstructstring: &PCWSTR, oid: u64 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§