#[repr(u8)]pub enum Seclock {
UNLOCK = 0,
LOCK = 1,
_RESERVED_2 = 2,
_RESERVED_3 = 3,
}Variants§
UNLOCK = 0
Unlocks, so block is open to all. But, AHB Master will only issue non-secure requests.
LOCK = 1
Locks to the current security level. AHB Master will issue requests at this level.
_RESERVED_2 = 2
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Ord for Seclock
impl Ord for Seclock
Source§impl PartialOrd for Seclock
impl PartialOrd for Seclock
impl Copy for Seclock
impl Eq for Seclock
impl StructuralPartialEq for Seclock
Auto Trait Implementations§
impl Freeze for Seclock
impl RefUnwindSafe for Seclock
impl Send for Seclock
impl Sync for Seclock
impl Unpin for Seclock
impl UnwindSafe for Seclock
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