[−][src]Struct libp2p_ping::handler::PingHandler
Protocol handler that handles pinging the remote at a regular period and answering ping queries.
If the remote doesn't respond, produces an error that closes the connection.
Implementations
impl PingHandler
[src]
pub fn new(config: PingConfig) -> Self
[src]
Builds a new PingHandler
with the given configuration.
Trait Implementations
impl ProtocolsHandler for PingHandler
[src]
type InEvent = Void
Custom event that can be received from the outside.
type OutEvent = PingResult
Custom event that can be produced by the handler and that will be returned to the outside.
type Error = PingFailure
The type of errors returned by ProtocolsHandler::poll
.
type InboundProtocol = Ping
The inbound upgrade for the protocol(s) used by the handler.
type OutboundProtocol = Ping
The outbound upgrade for the protocol(s) used by the handler.
type OutboundOpenInfo = ()
The type of additional information passed to an OutboundSubstreamRequest
.
type InboundOpenInfo = ()
The type of additional information returned from listen_protocol
.
fn listen_protocol(&self) -> SubstreamProtocol<Ping, ()>
[src]
fn inject_fully_negotiated_inbound(
&mut self,
stream: NegotiatedSubstream,
(): ()
)
[src]
&mut self,
stream: NegotiatedSubstream,
(): ()
)
fn inject_fully_negotiated_outbound(
&mut self,
stream: NegotiatedSubstream,
(): ()
)
[src]
&mut self,
stream: NegotiatedSubstream,
(): ()
)
fn inject_event(&mut self, _: Void)
[src]
fn inject_dial_upgrade_error(
&mut self,
_info: (),
error: ProtocolsHandlerUpgrErr<Void>
)
[src]
&mut self,
_info: (),
error: ProtocolsHandlerUpgrErr<Void>
)
fn connection_keep_alive(&self) -> KeepAlive
[src]
fn poll(
&mut self,
cx: &mut Context<'_>
) -> Poll<ProtocolsHandlerEvent<Ping, (), PingResult, Self::Error>>
[src]
&mut self,
cx: &mut Context<'_>
) -> Poll<ProtocolsHandlerEvent<Ping, (), PingResult, Self::Error>>
fn inject_address_change(&mut self, _new_address: &Multiaddr)
[src]
fn inject_listen_upgrade_error(
&mut self,
Self::InboundOpenInfo,
ProtocolsHandlerUpgrErr<<Self::InboundProtocol as InboundUpgradeSend>::Error>
)
[src]
&mut self,
Self::InboundOpenInfo,
ProtocolsHandlerUpgrErr<<Self::InboundProtocol as InboundUpgradeSend>::Error>
)
fn map_in_event<TNewIn, TMap>(self, map: TMap) -> MapInEvent<Self, TNewIn, TMap> where
TMap: Fn(&TNewIn) -> Option<&Self::InEvent>,
[src]
TMap: Fn(&TNewIn) -> Option<&Self::InEvent>,
fn map_out_event<TMap, TNewOut>(self, map: TMap) -> MapOutEvent<Self, TMap> where
TMap: FnMut(Self::OutEvent) -> TNewOut,
[src]
TMap: FnMut(Self::OutEvent) -> TNewOut,
fn select<TProto2>(
self,
other: TProto2
) -> ProtocolsHandlerSelect<Self, TProto2>
[src]
self,
other: TProto2
) -> ProtocolsHandlerSelect<Self, TProto2>
fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self>
[src]
Auto Trait Implementations
impl !RefUnwindSafe for PingHandler
impl Send for PingHandler
impl !Sync for PingHandler
impl Unpin for PingHandler
impl !UnwindSafe for PingHandler
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,
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> IntoProtocolsHandler for T where
T: ProtocolsHandler,
[src]
T: ProtocolsHandler,
type Handler = T
The protocols handler.
fn into_handler(self, &PeerId, &ConnectedPoint) -> T
[src]
fn inbound_protocol(
&self
) -> <<T as IntoProtocolsHandler>::Handler as ProtocolsHandler>::InboundProtocol
[src]
&self
) -> <<T as IntoProtocolsHandler>::Handler as ProtocolsHandler>::InboundProtocol
fn select<TProto2>(
self,
other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2>
[src]
self,
other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2>
fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self>
[src]
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.
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.
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>,