pub struct Control(/* private fields */);Expand description
control
Implementations§
Source§impl Control
impl Control
pub const SYNC_EN_OFFSET: usize = 0usize
pub const SYNC_EN_WIDTH: usize = 1usize
pub const SYNC_EN_MASK: u32 = 1u32
pub const DISABLE_OFFSET: usize = 1usize
pub const DISABLE_WIDTH: usize = 1usize
pub const DISABLE_MASK: u32 = 1u32
Sourcepub fn set_sync_en(&mut self, val: bool)
pub fn set_sync_en(&mut self, val: bool)
sync_en
Sourcepub fn set_disable(&mut self, val: bool)
pub fn set_disable(&mut self, val: bool)
disable
Trait Implementations§
Source§impl Register for Control
impl Register for Control
Source§type Accesswidth = u32
type Accesswidth = u32
Primitive integer type representing the size of memory accesses used when
reading/writing this register.
Source§type ByteEndian = LittleEndian
type ByteEndian = LittleEndian
Ordering of bytes within each accesswidth subword.
Source§type WordEndian = LittleEndian
type WordEndian = LittleEndian
Ordering of accesswidth subwords within the register.
impl Copy for Control
impl Eq for Control
impl Send for Control
impl StructuralPartialEq for Control
impl Sync for Control
Auto Trait Implementations§
impl Freeze for Control
impl RefUnwindSafe for Control
impl Unpin for Control
impl UnwindSafe for Control
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