Trait IMbnInterfaceManagerEvents_Impl
pub trait IMbnInterfaceManagerEvents_Impl: IUnknownImpl {
// Required methods
fn OnInterfaceArrival(
&self,
newinterface: Ref<'_, IMbnInterface>,
) -> Result<()>;
fn OnInterfaceRemoval(
&self,
oldinterface: Ref<'_, IMbnInterface>,
) -> Result<()>;
}
Required Methods§
fn OnInterfaceArrival(&self, newinterface: Ref<'_, IMbnInterface>) -> Result<()>
fn OnInterfaceRemoval(&self, oldinterface: Ref<'_, IMbnInterface>) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.