[][src]Enum thread_priority::RealtimeThreadSchedulePolicy

pub enum RealtimeThreadSchedulePolicy {
    Fifo,
    RoundRobin,
}

The following "real-time" policies are also supported, for special time-critical applications that need precise control over the way in which runnable processes are selected for execution

Variants

Fifo

A first-in, first-out policy

RoundRobin

A round-robin policy

Trait Implementations

impl Clone for RealtimeThreadSchedulePolicy[src]

impl Copy for RealtimeThreadSchedulePolicy[src]

impl Eq for RealtimeThreadSchedulePolicy[src]

impl Ord for RealtimeThreadSchedulePolicy[src]

impl PartialEq<RealtimeThreadSchedulePolicy> for RealtimeThreadSchedulePolicy[src]

impl PartialOrd<RealtimeThreadSchedulePolicy> for RealtimeThreadSchedulePolicy[src]

impl Debug for RealtimeThreadSchedulePolicy[src]

impl StructuralPartialEq for RealtimeThreadSchedulePolicy[src]

impl StructuralEq for RealtimeThreadSchedulePolicy[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]