#[repr(transparent)]pub struct Priority(_);Expand description
Priority for an actor in the scheduler.
Actors with a higher priority will be scheduled to run more often and
quicker (after they return Poll::Pending) then actors with a lower
priority.
Implementations
sourceimpl Priority
impl Priority
Trait Implementations
sourceimpl Ord for Priority
impl Ord for Priority
sourceimpl PartialOrd<Priority> for Priority
impl PartialOrd<Priority> for Priority
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
sourcefn lt(&self, other: &Self) -> bool
fn lt(&self, other: &Self) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
sourcefn le(&self, other: &Self) -> bool
fn le(&self, other: &Self) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for Priority
impl Eq for Priority
impl StructuralEq for Priority
impl StructuralPartialEq for Priority
Auto Trait Implementations
impl RefUnwindSafe for Priority
impl Send for Priority
impl Sync for Priority
impl Unpin for Priority
impl UnwindSafe for Priority
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more