pub struct Processor {
    current: Option<Arc<TaskControlBlock>>,
    idle_task_cx: TaskContext,
}
Expand description

Processor management structure

Fields

current: Option<Arc<TaskControlBlock>>idle_task_cx: TaskContext

The basic control flow of each core, helping to select and switch process

Implementations

Get mutable reference to idle_task_cx

Get current task in moving semanteme

Get current task in cloning semanteme

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.