[][src]Enum thread_priority::NormalThreadSchedulePolicy

pub enum NormalThreadSchedulePolicy {
    Idle,
    Batch,
    Other,
    Normal,
}

Normal (usual) schedule policies

Variants

Idle

For running very low priority background jobs

Batch

For "batch" style execution of processes

Other

The standard round-robin time-sharing policy

Normal

The standard round-robin time-sharing policy

Trait Implementations

impl Clone for NormalThreadSchedulePolicy[src]

impl Copy for NormalThreadSchedulePolicy[src]

impl Eq for NormalThreadSchedulePolicy[src]

impl Ord for NormalThreadSchedulePolicy[src]

impl PartialEq<NormalThreadSchedulePolicy> for NormalThreadSchedulePolicy[src]

impl PartialOrd<NormalThreadSchedulePolicy> for NormalThreadSchedulePolicy[src]

impl Debug for NormalThreadSchedulePolicy[src]

impl StructuralPartialEq for NormalThreadSchedulePolicy[src]

impl StructuralEq for NormalThreadSchedulePolicy[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]