#[repr(u8)]pub enum IntMemClkLpm {
INT_MEM_CLK_LPM_0 = 0,
INT_MEM_CLK_LPM_1 = 1,
}Variants§
INT_MEM_CLK_LPM_0 = 0
Disable the clock to the Arm platform memories when entering Low Power Mode
INT_MEM_CLK_LPM_1 = 1
Keep the clocks to the Arm platform memories enabled only if an interrupt is pending when entering Low Power Modes (WAIT and STOP without power gating)
Implementations§
Source§impl IntMemClkLpm
impl IntMemClkLpm
Trait Implementations§
Source§impl Clone for IntMemClkLpm
impl Clone for IntMemClkLpm
Source§fn clone(&self) -> IntMemClkLpm
fn clone(&self) -> IntMemClkLpm
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 IntMemClkLpm
impl Debug for IntMemClkLpm
Source§impl From<IntMemClkLpm> for u8
impl From<IntMemClkLpm> for u8
Source§fn from(val: IntMemClkLpm) -> u8
fn from(val: IntMemClkLpm) -> u8
Converts to this type from the input type.
Source§impl From<u8> for IntMemClkLpm
impl From<u8> for IntMemClkLpm
Source§fn from(val: u8) -> IntMemClkLpm
fn from(val: u8) -> IntMemClkLpm
Converts to this type from the input type.
Source§impl Ord for IntMemClkLpm
impl Ord for IntMemClkLpm
Source§fn cmp(&self, other: &IntMemClkLpm) -> Ordering
fn cmp(&self, other: &IntMemClkLpm) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IntMemClkLpm
impl PartialEq for IntMemClkLpm
Source§impl PartialOrd for IntMemClkLpm
impl PartialOrd for IntMemClkLpm
impl Copy for IntMemClkLpm
impl Eq for IntMemClkLpm
impl StructuralPartialEq for IntMemClkLpm
Auto Trait Implementations§
impl Freeze for IntMemClkLpm
impl RefUnwindSafe for IntMemClkLpm
impl Send for IntMemClkLpm
impl Sync for IntMemClkLpm
impl Unpin for IntMemClkLpm
impl UnwindSafe for IntMemClkLpm
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