pub trait IManagedActivationEvents_Impl: Sized {
    // Required methods
    fn CreateManagedStub(
        &self,
        pinfo: Option<&IManagedObjectInfo>,
        fdist: BOOL,
    ) -> Result<()>;
    fn DestroyManagedStub(
        &self,
        pinfo: Option<&IManagedObjectInfo>,
    ) -> Result<()>;
}

Required Methods§

fn CreateManagedStub( &self, pinfo: Option<&IManagedObjectInfo>, fdist: BOOL, ) -> Result<()>

fn DestroyManagedStub(&self, pinfo: Option<&IManagedObjectInfo>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§