Enum avr_oxide::concurrency::scheduler::ThreadState

source ·
pub enum ThreadState {
    Schedulable,
    BackgroundSchedulable,
    Suspended,
    Zombie,
    Dead,
    BlockedOnMutex,
    BlockedOnThread,
    BlockedOnQueue,
    BlockedOnEvent,
}
Expand description

The state that a thread can be in

Variants§

§

Schedulable

This thread can be scheduled for execution

§

BackgroundSchedulable

This thread can be scheduled for execution, but it is a background thread that should only be run if nothing else is available.

§

Suspended

This thread is suspended and cannot (currently) be executed until its state is changed to Schedulable

§

Zombie

This thread has completed execution, but nobody has joined it and consumed the return value, so we can’t replace it yet

§

Dead

This thread has been killed and may be replaced.

§

BlockedOnMutex

This thread is waiting for a mutex

§

BlockedOnThread

This thread is waiting to join another thread

§

BlockedOnQueue

This thread is waiting for a queue to produce or consume data

§

BlockedOnEvent

This thread is waiting for an EventWait to release it

Trait Implementations§

source§

impl Clone for ThreadState

source§

fn clone(&self) -> ThreadState

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl PartialEq for ThreadState

source§

fn eq(&self, other: &ThreadState) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ThreadState

source§

impl StructuralPartialEq for ThreadState

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.