enum Reply {
Echo(PongMetadata),
Acked(u64),
Silence {
progress: Option<SendProgress>,
},
}Expand description
What one ping came back as.
Variants§
Echo(PongMetadata)
Acked(u64)
An ack-only ping, and how long the acknowledgment took.
Silence
Nothing came back.
Fields
§
progress: Option<SendProgress>What the MAC saw of the frame on its way out, where it kept a receipt to see it by—which separates “nobody answered” from “it never left the antenna”. An echo ping asks for no acknowledgment, so the MAC tracks nothing and there is nothing here to report.
Auto Trait Implementations§
impl Freeze for Reply
impl RefUnwindSafe for Reply
impl Send for Reply
impl Sync for Reply
impl Unpin for Reply
impl UnwindSafe for Reply
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more