pub struct ReplyTimestamp {
pub seq: EchoSeq,
pub received_at: Instant,
}
Expand description
A record of receiving an ICMP Echo Reply for seq
at timestamp
.
Fields§
§seq: EchoSeq
The reply sequence number
received_at: Instant
The timestamp when the reply was received
Trait Implementations§
Source§impl Debug for ReplyTimestamp
impl Debug for ReplyTimestamp
Source§impl PartialEq for ReplyTimestamp
impl PartialEq for ReplyTimestamp
impl Eq for ReplyTimestamp
impl StructuralPartialEq for ReplyTimestamp
Auto Trait Implementations§
impl Freeze for ReplyTimestamp
impl RefUnwindSafe for ReplyTimestamp
impl Send for ReplyTimestamp
impl Sync for ReplyTimestamp
impl Unpin for ReplyTimestamp
impl UnwindSafe for ReplyTimestamp
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.