Enum scheduler::Policy [] [src]

pub enum Policy {
    Other,
    Fifo,
    RoundRobin,
    Batch,
    Idle,
    Deadline,
}

Policies that may be set

Not all of these are supported by this binding. Specifically, this binding was made to support a simple use of RoundRobin.

If you are considering another policy, consider updating this source as well.

Variants