Enum Sramlap
#[repr(u8)]pub enum Sramlap {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
SRAM_L Arbitration Priority
Value on reset: 0
Variants§
_00 = 0
0: Round robin
_01 = 1
1: Special round robin (favors SRAM backdoor accesses over the processor)
_10 = 2
2: Fixed priority. Processor has highest, backdoor has lowest
_11 = 3
3: Fixed priority. Backdoor has highest, processor has lowest
Trait Implementations§
impl Copy for Sramlap
impl Eq for Sramlap
impl IsEnum for Sramlap
impl StructuralPartialEq for Sramlap
Auto Trait Implementations§
impl Freeze for Sramlap
impl RefUnwindSafe for Sramlap
impl Send for Sramlap
impl Sync for Sramlap
impl Unpin for Sramlap
impl UnwindSafe for Sramlap
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