pub trait IMbnConnectionManagerEvents_Impl: Sized {
    // Required methods
    fn OnConnectionArrival(
        &self,
        newconnection: Option<&IMbnConnection>
    ) -> Result<()>;
    fn OnConnectionRemoval(
        &self,
        oldconnection: Option<&IMbnConnection>
    ) -> Result<()>;
}

Required Methods§

fn OnConnectionArrival( &self, newconnection: Option<&IMbnConnection> ) -> Result<()>

fn OnConnectionRemoval( &self, oldconnection: Option<&IMbnConnection> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§