Struct libp2p_swarm::behaviour::ConnectionClosed
source · pub struct ConnectionClosed<'a, Handler: IntoConnectionHandler> {
pub peer_id: PeerId,
pub connection_id: ConnectionId,
pub endpoint: &'a ConnectedPoint,
pub handler: <Handler as IntoConnectionHandler>::Handler,
pub remaining_established: usize,
}
Expand description
FromSwarm
variant that informs the behaviour about a closed connection to a peer.
This event is always paired with an earlier
FromSwarm::ConnectionEstablished
with the same peer ID, connection ID
and endpoint.
Fields§
§peer_id: PeerId
§connection_id: ConnectionId
§endpoint: &'a ConnectedPoint
§handler: <Handler as IntoConnectionHandler>::Handler
§remaining_established: usize
Auto Trait Implementations§
impl<'a, Handler> RefUnwindSafe for ConnectionClosed<'a, Handler>where <Handler as IntoConnectionHandler>::Handler: RefUnwindSafe,
impl<'a, Handler> Send for ConnectionClosed<'a, Handler>
impl<'a, Handler> Sync for ConnectionClosed<'a, Handler>where <Handler as IntoConnectionHandler>::Handler: Sync,
impl<'a, Handler> Unpin for ConnectionClosed<'a, Handler>where <Handler as IntoConnectionHandler>::Handler: Unpin,
impl<'a, Handler> UnwindSafe for ConnectionClosed<'a, Handler>where <Handler as IntoConnectionHandler>::Handler: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more