pub trait IMbnInterfaceManagerEvents_Impl: Sized {
    // Required methods
    fn OnInterfaceArrival(
        &self,
        newinterface: Option<&IMbnInterface>
    ) -> Result<()>;
    fn OnInterfaceRemoval(
        &self,
        oldinterface: Option<&IMbnInterface>
    ) -> Result<()>;
}

Required Methods§

fn OnInterfaceArrival(&self, newinterface: Option<&IMbnInterface>) -> Result<()>

fn OnInterfaceRemoval(&self, oldinterface: Option<&IMbnInterface>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§