pub enum RequestPriority {
Low,
Normal,
High,
Critical,
}Expand description
Request priority
Variants§
Trait Implementations§
Source§impl Clone for RequestPriority
impl Clone for RequestPriority
Source§fn clone(&self) -> RequestPriority
fn clone(&self) -> RequestPriority
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 RequestPriority
impl Debug for RequestPriority
Source§impl Ord for RequestPriority
impl Ord for RequestPriority
Source§fn cmp(&self, other: &RequestPriority) -> Ordering
fn cmp(&self, other: &RequestPriority) -> 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 RequestPriority
impl PartialEq for RequestPriority
Source§impl PartialOrd for RequestPriority
impl PartialOrd for RequestPriority
impl Copy for RequestPriority
impl Eq for RequestPriority
impl StructuralPartialEq for RequestPriority
Auto Trait Implementations§
impl Freeze for RequestPriority
impl RefUnwindSafe for RequestPriority
impl Send for RequestPriority
impl Sync for RequestPriority
impl Unpin for RequestPriority
impl UnsafeUnpin for RequestPriority
impl UnwindSafe for RequestPriority
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