pub enum SchedulerKind {
Other,
Fifo,
RoundRobin,
Deadline,
}Expand description
Klassifikation der Linux-Scheduler-Policy.
Variants§
Other
CFS (SCHED_OTHER/SCHED_BATCH/SCHED_IDLE).
Fifo
SCHED_FIFO.
RoundRobin
SCHED_RR.
Deadline
SCHED_DEADLINE.
Trait Implementations§
Source§impl Clone for SchedulerKind
impl Clone for SchedulerKind
Source§fn clone(&self) -> SchedulerKind
fn clone(&self) -> SchedulerKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SchedulerKind
impl Debug for SchedulerKind
Source§impl PartialEq for SchedulerKind
impl PartialEq for SchedulerKind
Source§fn eq(&self, other: &SchedulerKind) -> bool
fn eq(&self, other: &SchedulerKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SchedulerKind
impl Eq for SchedulerKind
impl StructuralPartialEq for SchedulerKind
Auto Trait Implementations§
impl Freeze for SchedulerKind
impl RefUnwindSafe for SchedulerKind
impl Send for SchedulerKind
impl Sync for SchedulerKind
impl Unpin for SchedulerKind
impl UnsafeUnpin for SchedulerKind
impl UnwindSafe for SchedulerKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more