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.
Trait Implementations§
Source§impl Clone for PowerState
impl Clone for PowerState
Source§fn clone(&self) -> PowerState
fn clone(&self) -> PowerState
Returns a duplicate 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<'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
Source§impl PartialEq for PowerState
impl PartialEq for PowerState
Source§impl Serialize for PowerState
impl Serialize for PowerState
Source§impl ToSnakeCase for PowerState
impl ToSnakeCase for PowerState
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringimpl Copy for PowerState
impl Eq for PowerState
impl StructuralPartialEq for PowerState
Auto Trait Implementations§
impl Freeze for PowerState
impl RefUnwindSafe for PowerState
impl Send for PowerState
impl Sync for PowerState
impl Unpin for PowerState
impl UnsafeUnpin for PowerState
impl UnwindSafe for PowerState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more