pub enum Interleave {
Normal = 0,
Interleave = 1,
}Expand description
Controls RAM access for RAMA1 and RAMA2
Value on reset: 0
Variants§
Normal = 0
0: RAM access is consecutive.
Interleave = 1
1: RAM access is interleaved. This setting is need for PKC L0 memory access.
Trait Implementations§
Source§impl Clone for Interleave
impl Clone for Interleave
Source§fn clone(&self) -> Interleave
fn clone(&self) -> Interleave
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 Interleave
Source§impl Debug for Interleave
impl Debug for Interleave
impl Eq for Interleave
Source§impl From<Interleave> for bool
impl From<Interleave> for bool
Source§fn from(variant: Interleave) -> Self
fn from(variant: Interleave) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Interleave
impl PartialEq for Interleave
Source§fn eq(&self, other: &Interleave) -> bool
fn eq(&self, other: &Interleave) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Interleave
Auto Trait Implementations§
impl Freeze for Interleave
impl RefUnwindSafe for Interleave
impl Send for Interleave
impl Sync for Interleave
impl Unpin for Interleave
impl UnsafeUnpin for Interleave
impl UnwindSafe for Interleave
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