Enum vent::kvm::sys::StateValue [] [src]

#[repr(u32)]
pub enum StateValue { Runnable, Uninitialized, InitReceived, StateHalted, SipiReceived, Stopped, CheckStop, Operating, Load, }

Variants

The vCPU is currently running. Only supported on x86, ARM, and arm64.

The vCPU is an application processor which has not yet received an INIT signal. Only supported on x86.

The vCPU has received an INIT signal, and is now ready for a SIPI. Only supoprted on x86.

The vCPU has executed a HLT instruction and is waiting for an interrupt. Only supported on x86.

The vCPU has just received a SIPI. Only supported on x86.

The vCPU is stopped. Only supported on s390, ARM, and arm64.

The vCPU is in a special error state. Only supported on s390.

The vCPU is operating (running or halted). Only supported on s390.

The vCPU is in a special load/startup state. Only supported on s390.

Trait Implementations

impl Debug for StateValue
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for StateValue
[src]

impl Clone for StateValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for StateValue
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for StateValue
[src]

Auto Trait Implementations

impl Send for StateValue

impl Sync for StateValue