#[repr(u8)]pub enum LockControl {
Locked = 1,
Unlocked = 2,
}Expand description
Lock control for CDOG configuration.
When locked, configuration registers cannot be modified.
Variants§
Trait Implementations§
Source§impl Clone for LockControl
impl Clone for LockControl
Source§fn clone(&self) -> LockControl
fn clone(&self) -> LockControl
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 LockControl
impl Debug for LockControl
Source§impl Default for LockControl
impl Default for LockControl
Source§fn default() -> LockControl
fn default() -> LockControl
Returns the “default value” for a type. Read more
Source§impl PartialEq for LockControl
impl PartialEq for LockControl
impl Copy for LockControl
impl Eq for LockControl
impl StructuralPartialEq for LockControl
Auto Trait Implementations§
impl Freeze for LockControl
impl RefUnwindSafe for LockControl
impl Send for LockControl
impl Sync for LockControl
impl Unpin for LockControl
impl UnwindSafe for LockControl
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