pub enum RequestPriority {
High = 0,
Low = 1,
}Expand description
Effective scheduling priority of a request.
Used in the Downloader’s 2×2 slot map (peer priority × cmd
priority): High commands and peers are processed before Low.
Variants§
High = 0
Latency-sensitive: demand segments, execute/batch calls,
seek.
Low = 1
Background: prefetch, idle downloads. Default.
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 (const: unstable) · 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 Hash for RequestPriority
impl Hash for RequestPriority
Source§impl IntoProbeArg for RequestPriority
impl IntoProbeArg for RequestPriority
fn into_probe_arg(self) -> u64
fn from_probe_arg(packed: u64) -> Self
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 (const: unstable) · 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§fn eq(&self, other: &RequestPriority) -> bool
fn eq(&self, other: &RequestPriority) -> bool
Tests for
self and other values to be equal, and is used by ==.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