#[repr(transparent)]pub struct Allow(pub u32);Expand description
PUF Allow register
Tuple Fields§
§0: u32Implementations§
Source§impl Allow
impl Allow
Sourcepub const fn allowenroll(&self) -> bool
pub const fn allowenroll(&self) -> bool
Enroll operation is allowed
Sourcepub const fn set_allowenroll(&mut self, val: bool)
pub const fn set_allowenroll(&mut self, val: bool)
Enroll operation is allowed
Sourcepub const fn allowstart(&self) -> bool
pub const fn allowstart(&self) -> bool
Start operation is allowed
Sourcepub const fn set_allowstart(&mut self, val: bool)
pub const fn set_allowstart(&mut self, val: bool)
Start operation is allowed
Sourcepub const fn allowsetkey(&self) -> bool
pub const fn allowsetkey(&self) -> bool
Set Key operations are allowed
Sourcepub const fn set_allowsetkey(&mut self, val: bool)
pub const fn set_allowsetkey(&mut self, val: bool)
Set Key operations are allowed
Sourcepub const fn allowgetkey(&self) -> bool
pub const fn allowgetkey(&self) -> bool
Get Key operation is allowed
Sourcepub const fn set_allowgetkey(&mut self, val: bool)
pub const fn set_allowgetkey(&mut self, val: bool)
Get Key operation is allowed
Trait Implementations§
impl Copy for Allow
impl Eq for Allow
impl StructuralPartialEq for Allow
Auto Trait Implementations§
impl Freeze for Allow
impl RefUnwindSafe for Allow
impl Send for Allow
impl Sync for Allow
impl Unpin for Allow
impl UnwindSafe for Allow
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