pub enum QueueOrder {
Pts,
Dts,
}Expand description
Ordering strategy for packet queue.
Variants§
Trait Implementations§
Source§impl Clone for QueueOrder
impl Clone for QueueOrder
Source§fn clone(&self) -> QueueOrder
fn clone(&self) -> QueueOrder
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 QueueOrder
impl Debug for QueueOrder
Source§impl Default for QueueOrder
impl Default for QueueOrder
Source§impl PartialEq for QueueOrder
impl PartialEq for QueueOrder
impl Copy for QueueOrder
impl Eq for QueueOrder
impl StructuralPartialEq for QueueOrder
Auto Trait Implementations§
impl Freeze for QueueOrder
impl RefUnwindSafe for QueueOrder
impl Send for QueueOrder
impl Sync for QueueOrder
impl Unpin for QueueOrder
impl UnsafeUnpin for QueueOrder
impl UnwindSafe for QueueOrder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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