Struct libp2p::mdns::Mdns [−][src]
A NetworkBehaviour for mDNS. Automatically discovers peers on the local network and adds
them to the topology.
Implementations
impl Mdns[src]
pub fn new() -> Result<Mdns, Error>[src]
Builds a new Mdns behaviour.
pub fn has_node(&self, peer_id: &PeerId) -> bool[src]
Returns true if the given PeerId is in the list of nodes discovered through mDNS.
pub fn discovered_nodes(&self) -> impl ExactSizeIterator[src]
Returns the list of nodes that we have discovered through mDNS and that are not expired.
Trait Implementations
impl Debug for Mdns[src]
impl NetworkBehaviour for Mdns[src]
type ProtocolsHandler = DummyProtocolsHandler
Handler for all the protocols the network behaviour supports.
type OutEvent = MdnsEvent
Event generated by the NetworkBehaviour and that the swarm will report back.
pub fn new_handler(&mut self) -> <Mdns as NetworkBehaviour>::ProtocolsHandler[src]
pub fn addresses_of_peer(&mut self, peer_id: &PeerId) -> Vec<Multiaddr, Global>[src]
pub fn inject_connected(&mut self, &PeerId)[src]
pub fn inject_disconnected(&mut self, &PeerId)[src]
pub fn inject_event(
&mut self,
PeerId,
ConnectionId,
_ev: <<Mdns as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::OutEvent
)[src]
&mut self,
PeerId,
ConnectionId,
_ev: <<Mdns as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::OutEvent
)
pub fn poll(
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<<Mdns as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::InEvent, <Mdns as NetworkBehaviour>::OutEvent>>[src]
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<<Mdns as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::InEvent, <Mdns as NetworkBehaviour>::OutEvent>>
pub fn inject_connection_established(
&mut self,
&PeerId,
&ConnectionId,
&ConnectedPoint
)[src]
&mut self,
&PeerId,
&ConnectionId,
&ConnectedPoint
)
pub fn inject_connection_closed(
&mut self,
&PeerId,
&ConnectionId,
&ConnectedPoint
)[src]
&mut self,
&PeerId,
&ConnectionId,
&ConnectedPoint
)
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 Mdns
impl Send for Mdns
impl !Sync for Mdns
impl Unpin for Mdns
impl !UnwindSafe for Mdns
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[src]
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>, [src]
V: MultiLane<T>,