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§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.