pub enum FrameEventType {
Sent,
Received,
Dropped,
Retransmitted,
Acknowledged,
}
Expand description
Frame event types
Variants§
Sent
A frame was sent
Received
A frame was received
Dropped
A frame was dropped before delivery
Retransmitted
A frame was retransmitted
Acknowledged
A frame was acknowledged
Trait Implementations§
Source§impl Clone for FrameEventType
impl Clone for FrameEventType
Source§fn clone(&self) -> FrameEventType
fn clone(&self) -> FrameEventType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FrameEventType
impl Debug for FrameEventType
impl Copy for FrameEventType
Auto Trait Implementations§
impl Freeze for FrameEventType
impl RefUnwindSafe for FrameEventType
impl Send for FrameEventType
impl Sync for FrameEventType
impl Unpin for FrameEventType
impl UnwindSafe for FrameEventType
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