pub enum SendQueuePriority {
High = 0,
Normal = 1,
Low = 2,
}
Variants§
Trait Implementations§
source§impl Clone for SendQueuePriority
impl Clone for SendQueuePriority
source§fn clone(&self) -> SendQueuePriority
fn clone(&self) -> SendQueuePriority
Returns a copy 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 SendQueuePriority
impl Debug for SendQueuePriority
source§impl Ord for SendQueuePriority
impl Ord for SendQueuePriority
source§fn cmp(&self, other: &SendQueuePriority) -> Ordering
fn cmp(&self, other: &SendQueuePriority) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for SendQueuePriority
impl PartialEq for SendQueuePriority
source§fn eq(&self, other: &SendQueuePriority) -> bool
fn eq(&self, other: &SendQueuePriority) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for SendQueuePriority
impl PartialOrd for SendQueuePriority
source§fn partial_cmp(&self, other: &SendQueuePriority) -> Option<Ordering>
fn partial_cmp(&self, other: &SendQueuePriority) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for SendQueuePriority
impl Eq for SendQueuePriority
impl StructuralPartialEq for SendQueuePriority
Auto Trait Implementations§
impl RefUnwindSafe for SendQueuePriority
impl Send for SendQueuePriority
impl Sync for SendQueuePriority
impl Unpin for SendQueuePriority
impl UnwindSafe for SendQueuePriority
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