pub trait NewNetworkEvents {
    fn new(
        peer_mgr_notifs_rx: Receiver<(PeerId, ProtocolId), PeerManagerNotification>,
        connection_notifs_rx: Receiver<PeerId, ConnectionNotification>
    ) -> Self; }
Expand description

Trait specifying the signature for new() NetworkEvents

Required Methods

Implementors