pub enum RamaCgOverride {
Disable = 0,
Enable = 1,
}Expand description
RAMA bank clock gating control, only avaiable when RAMA_ECC_ENABLE = 0.
Value on reset: 0
Variants§
Disable = 0
0: Memory bank clock is gated automatically if no access more than 16 clock cycles
Enable = 1
1: Auto clock gating feature is disabled
Trait Implementations§
Source§impl Clone for RamaCgOverride
impl Clone for RamaCgOverride
Source§fn clone(&self) -> RamaCgOverride
fn clone(&self) -> RamaCgOverride
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RamaCgOverride
Source§impl Debug for RamaCgOverride
impl Debug for RamaCgOverride
impl Eq for RamaCgOverride
Source§impl From<RamaCgOverride> for bool
impl From<RamaCgOverride> for bool
Source§fn from(variant: RamaCgOverride) -> Self
fn from(variant: RamaCgOverride) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RamaCgOverride
impl PartialEq for RamaCgOverride
Source§fn eq(&self, other: &RamaCgOverride) -> bool
fn eq(&self, other: &RamaCgOverride) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RamaCgOverride
Auto Trait Implementations§
impl Freeze for RamaCgOverride
impl RefUnwindSafe for RamaCgOverride
impl Send for RamaCgOverride
impl Sync for RamaCgOverride
impl Unpin for RamaCgOverride
impl UnsafeUnpin for RamaCgOverride
impl UnwindSafe for RamaCgOverride
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