Enum libp2p::ping::PingSuccess
source · pub enum PingSuccess {
Pong,
Ping {
rtt: Duration,
},
}
Expand description
The successful result of processing an inbound or outbound ping.
Variants§
Pong
Received a ping and sent back a pong.
Ping
Sent a ping and received back a pong.
Includes the round-trip time.