pub enum RequestPriority {
Low = 0,
Normal = 1,
High = 2,
Critical = 3,
}Expand description
Request priority for queue management.
Variants§
Low = 0
Low priority.
Normal = 1
Normal priority.
High = 2
High priority.
Critical = 3
Critical priority (e.g., order cancellation).
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 Default for RequestPriority
impl Default for RequestPriority
Source§fn default() -> RequestPriority
fn default() -> RequestPriority
Returns the “default value” for a type. Read more
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 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