#[repr(u8)]pub enum Interleave {
NORMAL = 0,
INTERLEAVE = 1,
}Variants§
NORMAL = 0
RAM access to PKC RAM 0 and PKC RAM 1 is consecutive.
INTERLEAVE = 1
RAM access to PKC RAM 0 and PKC RAM 1 is interleaved. This setting is need for PKC L0 memory access.
Implementations§
Source§impl Interleave
impl Interleave
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 · 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 Interleave
impl Debug for Interleave
Source§impl From<Interleave> for u8
impl From<Interleave> for u8
Source§fn from(val: Interleave) -> u8
fn from(val: Interleave) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Interleave
impl From<u8> for Interleave
Source§fn from(val: u8) -> Interleave
fn from(val: u8) -> Interleave
Converts to this type from the input type.
Source§impl Ord for Interleave
impl Ord for Interleave
Source§fn cmp(&self, other: &Interleave) -> Ordering
fn cmp(&self, other: &Interleave) -> 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 Interleave
impl PartialEq for Interleave
Source§impl PartialOrd for Interleave
impl PartialOrd for Interleave
impl Copy for Interleave
impl Eq for Interleave
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 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