Enum acpi::platform::ProcessorState[][src]

pub enum ProcessorState {
    Disabled,
    WaitingForSipi,
    Running,
}

Variants

Disabled

A processor in this state is unusable, and you must not attempt to bring it up.

WaitingForSipi

A processor waiting for a SIPI (Startup Inter-processor Interrupt) is currently not active, but may be brought up.

Running

A Running processor is currently brought up and running code.

Trait Implementations

impl Clone for ProcessorState[src]

impl Copy for ProcessorState[src]

impl Debug for ProcessorState[src]

impl Eq for ProcessorState[src]

impl PartialEq<ProcessorState> for ProcessorState[src]

impl StructuralEq for ProcessorState[src]

impl StructuralPartialEq for ProcessorState[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.