Struct libp2p_swarm::behaviour::ConnectionEstablished
source · pub struct ConnectionEstablished<'a> {
pub peer_id: PeerId,
pub connection_id: ConnectionId,
pub endpoint: &'a ConnectedPoint,
pub failed_addresses: &'a [Multiaddr],
pub other_established: usize,
}
Expand description
FromSwarm
variant that informs the behaviour about a newly established connection to a peer.
Fields§
§peer_id: PeerId
§connection_id: ConnectionId
§endpoint: &'a ConnectedPoint
§failed_addresses: &'a [Multiaddr]
§other_established: usize
Trait Implementations§
source§impl<'a> Clone for ConnectionEstablished<'a>
impl<'a> Clone for ConnectionEstablished<'a>
source§fn clone(&self) -> ConnectionEstablished<'a>
fn clone(&self) -> ConnectionEstablished<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Debug for ConnectionEstablished<'a>
impl<'a> Debug for ConnectionEstablished<'a>
impl<'a> Copy for ConnectionEstablished<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ConnectionEstablished<'a>
impl<'a> Send for ConnectionEstablished<'a>
impl<'a> Sync for ConnectionEstablished<'a>
impl<'a> Unpin for ConnectionEstablished<'a>
impl<'a> UnwindSafe for ConnectionEstablished<'a>
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