[−][src]Struct libp2p_identify::Identify
Network behaviour that automatically identifies nodes periodically, returns information about them, and answers identify queries from other nodes.
All external addresses of the local node supposedly observed by remotes
are reported via NetworkBehaviourAction::ReportObservedAddr
with a
score of 1
.
Implementations
impl Identify
[src]
pub fn new(
protocol_version: String,
agent_version: String,
local_public_key: PublicKey
) -> Self
[src]
protocol_version: String,
agent_version: String,
local_public_key: PublicKey
) -> Self
Creates a new Identify
network behaviour.
Trait Implementations
impl NetworkBehaviour for Identify
[src]
type ProtocolsHandler = IdentifyHandler
Handler for all the protocols the network behaviour supports.
type OutEvent = IdentifyEvent
Event generated by the NetworkBehaviour
and that the swarm will report back.
pub fn new_handler(&mut self) -> Self::ProtocolsHandler
[src]
pub fn addresses_of_peer(&mut self, _: &PeerId) -> Vec<Multiaddr>
[src]
pub fn inject_connected(&mut self, _: &PeerId)
[src]
pub fn inject_connection_established(
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
endpoint: &ConnectedPoint
)
[src]
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
endpoint: &ConnectedPoint
)
pub fn inject_connection_closed(
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
_: &ConnectedPoint
)
[src]
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
_: &ConnectedPoint
)
pub fn inject_disconnected(&mut self, peer_id: &PeerId)
[src]
pub fn inject_event(
&mut self,
peer_id: PeerId,
connection: ConnectionId,
event: <Self::ProtocolsHandler as ProtocolsHandler>::OutEvent
)
[src]
&mut self,
peer_id: PeerId,
connection: ConnectionId,
event: <Self::ProtocolsHandler as ProtocolsHandler>::OutEvent
)
pub fn poll(
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<Self::ProtocolsHandler as ProtocolsHandler>::InEvent, Self::OutEvent>>
[src]
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<Self::ProtocolsHandler as ProtocolsHandler>::InEvent, Self::OutEvent>>
pub fn inject_address_change(
&mut self,
&PeerId,
&ConnectionId,
_old: &ConnectedPoint,
_new: &ConnectedPoint
)
[src]
&mut self,
&PeerId,
&ConnectionId,
_old: &ConnectedPoint,
_new: &ConnectedPoint
)
pub fn inject_addr_reach_failure(
&mut self,
_peer_id: Option<&PeerId>,
_addr: &Multiaddr,
_error: &dyn Error
)
[src]
&mut self,
_peer_id: Option<&PeerId>,
_addr: &Multiaddr,
_error: &dyn Error
)
pub fn inject_dial_failure(&mut self, _peer_id: &PeerId)
[src]
pub fn inject_new_listen_addr(&mut self, _addr: &Multiaddr)
[src]
pub fn inject_expired_listen_addr(&mut self, _addr: &Multiaddr)
[src]
pub fn inject_new_external_addr(&mut self, _addr: &Multiaddr)
[src]
pub fn inject_listener_error(
&mut self,
_id: ListenerId,
_err: &(dyn Error + 'static)
)
[src]
&mut self,
_id: ListenerId,
_err: &(dyn Error + 'static)
)
pub fn inject_listener_closed(
&mut self,
_id: ListenerId,
_reason: Result<(), &Error>
)
[src]
&mut self,
_id: ListenerId,
_reason: Result<(), &Error>
)
Auto Trait Implementations
impl !RefUnwindSafe for Identify
[src]
impl Send for Identify
[src]
impl !Sync for Identify
[src]
impl Unpin for Identify
[src]
impl !UnwindSafe for Identify
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,