#[repr(u8)]pub enum Prmselect {
Semiauto = 0,
Fullauto = 1,
Manual = 3,
}
Expand description
Power Reduction Mode during Sleep
Value on reset: 0
Variants§
Semiauto = 0
0: NVM block enters low-power mode when entering standby mode. NVM block enters low-power mode when SPRM command is issued. NVM block exits low-power mode upon first access.
Fullauto = 1
1: NVM block enters low-power mode when entering standby mode. NVM block enters low-power mode when SPRM command is issued. NVM block exits low-power mode when system is not in standby mode.
Manual = 3
3: NVM block does not enter low-power mode when entering standby mode. NVM block enters low-power mode when SPRM command is issued. NVM block exits low-power mode upon first access.
Trait Implementations§
impl Copy for Prmselect
impl Eq for Prmselect
impl IsEnum for Prmselect
impl StructuralPartialEq for Prmselect
Auto Trait Implementations§
impl Freeze for Prmselect
impl RefUnwindSafe for Prmselect
impl Send for Prmselect
impl Sync for Prmselect
impl Unpin for Prmselect
impl UnwindSafe for Prmselect
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