pub struct TaskManagerInner {
    tasks: [TaskControlBlock; 4],
    current_task: usize,
}
Expand description

Inner of Task Manager

Fields

tasks: [TaskControlBlock; 4]

task list

current_task: usize

id of current Running task

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.