pub enum PowerState {
StandbyOrRetention(u32),
PowerDown(u32),
}
Expand description
Table 8 power_state parameter bit fields in Extended StateID format.
Variants§
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 From<PowerState> for u32
impl From<PowerState> for u32
Source§fn from(value: PowerState) -> Self
fn from(value: PowerState) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PowerState
impl PartialEq for PowerState
Source§impl TryFrom<u32> for PowerState
impl TryFrom<u32> for PowerState
impl 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 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