#[repr(transparent)]pub struct Res2(pub u32);Expand description
Result register 2
Tuple Fields§
§0: u32Implementations§
Source§impl Res2
impl Res2
Sourcepub const fn reg_value(&self) -> u32
pub const fn reg_value(&self) -> u32
Register to hold working result (from multiplier, adder/xor, etc). Is not normally written or read by application, but is available when accelerator not busy.
Sourcepub const fn set_reg_value(&mut self, val: u32)
pub const fn set_reg_value(&mut self, val: u32)
Register to hold working result (from multiplier, adder/xor, etc). Is not normally written or read by application, but is available when accelerator not busy.
Trait Implementations§
impl Copy for Res2
impl Eq for Res2
impl StructuralPartialEq for Res2
Auto Trait Implementations§
impl Freeze for Res2
impl RefUnwindSafe for Res2
impl Send for Res2
impl Sync for Res2
impl Unpin for Res2
impl UnwindSafe for Res2
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