pub enum AppEvent {
ProbeSent {
seq: SequenceNumber,
at: Duration,
},
ProbeReply {
seq: SequenceNumber,
sent_at: Duration,
received_at: Duration,
rtt_ms: u64,
duplicate: bool,
late: bool,
},
ProbeTimeout {
seq: SequenceNumber,
sent_at: Duration,
deadline: Duration,
},
Interrupted {
at: Duration,
},
}Variants§
Trait Implementations§
impl Eq for AppEvent
impl StructuralPartialEq for AppEvent
Auto Trait Implementations§
impl Freeze for AppEvent
impl RefUnwindSafe for AppEvent
impl Send for AppEvent
impl Sync for AppEvent
impl Unpin for AppEvent
impl UnsafeUnpin for AppEvent
impl UnwindSafe for AppEvent
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