Enum thread_priority::unix::ThreadSchedulePolicy
source · [−]pub enum ThreadSchedulePolicy {
Normal(NormalThreadSchedulePolicy),
Realtime(RealtimeThreadSchedulePolicy),
}Expand description
Thread schedule policy definition.
Variants
Normal(NormalThreadSchedulePolicy)
Normal thread schedule policies.
Realtime(RealtimeThreadSchedulePolicy)
Realtime thread schedule policies.
Trait Implementations
sourceimpl Clone for ThreadSchedulePolicy
impl Clone for ThreadSchedulePolicy
sourcefn clone(&self) -> ThreadSchedulePolicy
fn clone(&self) -> ThreadSchedulePolicy
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ThreadSchedulePolicy
impl Debug for ThreadSchedulePolicy
sourceimpl Hash for ThreadSchedulePolicy
impl Hash for ThreadSchedulePolicy
sourceimpl Ord for ThreadSchedulePolicy
impl Ord for ThreadSchedulePolicy
sourcefn cmp(&self, other: &ThreadSchedulePolicy) -> Ordering
fn cmp(&self, other: &ThreadSchedulePolicy) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<ThreadSchedulePolicy> for ThreadSchedulePolicy
impl PartialEq<ThreadSchedulePolicy> for ThreadSchedulePolicy
sourcefn eq(&self, other: &ThreadSchedulePolicy) -> bool
fn eq(&self, other: &ThreadSchedulePolicy) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl PartialOrd<ThreadSchedulePolicy> for ThreadSchedulePolicy
impl PartialOrd<ThreadSchedulePolicy> for ThreadSchedulePolicy
sourcefn partial_cmp(&self, other: &ThreadSchedulePolicy) -> Option<Ordering>
fn partial_cmp(&self, other: &ThreadSchedulePolicy) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn 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 more
impl Copy for ThreadSchedulePolicy
impl Eq for ThreadSchedulePolicy
impl StructuralEq for ThreadSchedulePolicy
impl StructuralPartialEq for ThreadSchedulePolicy
Auto Trait Implementations
impl RefUnwindSafe for ThreadSchedulePolicy
impl Send for ThreadSchedulePolicy
impl Sync for ThreadSchedulePolicy
impl Unpin for ThreadSchedulePolicy
impl UnwindSafe for ThreadSchedulePolicy
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