Enum redfish_codegen::models::resource::PowerState
source · pub enum PowerState {
On,
Off,
PoweringOn,
PoweringOff,
Paused,
}
Variants§
On
The resource is powered on.
Off
The resource is powered off. The components within the resource might continue to have AUX power.
PoweringOn
A temporary state between off and on. The components within the resource can take time to process the power on action.
PoweringOff
A temporary state between on and off. The components within the resource can take time to process the power off action.
Paused
The resource is paused. Added in version v1_13_0.
Trait Implementations§
source§impl Clone for PowerState
impl Clone for PowerState
source§fn clone(&self) -> PowerState
fn clone(&self) -> PowerState
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PowerState
impl Debug for PowerState
source§impl Default for PowerState
impl Default for PowerState
source§fn default() -> PowerState
fn default() -> PowerState
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PowerState
impl<'de> Deserialize<'de> for PowerState
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more