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.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PingSuccess
impl RefUnwindSafe for PingSuccess
impl Send for PingSuccess
impl Sync for PingSuccess
impl Unpin for PingSuccess
impl UnwindSafe for PingSuccess
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more