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 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl 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 · sourceconst fn max(self, other: Self) -> Selfwhere
Self: Sized,
const fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Selfwhere
Self: Sized,
const fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + 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
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>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const 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 moreimpl 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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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