#[repr(transparent)]pub struct PrngOut(pub u32);Expand description
PRNG software-accessable random output value
Tuple Fields§
§0: u32Implementations§
Source§impl PrngOut
impl PrngOut
Sourcepub const fn prng_out(&self) -> u32
pub const fn prng_out(&self) -> u32
Random output value from the PRNG. The PRNG output is disabled and this register is set to 0x00000000 when the AES is enabled.
Sourcepub const fn set_prng_out(&mut self, val: u32)
pub const fn set_prng_out(&mut self, val: u32)
Random output value from the PRNG. The PRNG output is disabled and this register is set to 0x00000000 when the AES is enabled.
Trait Implementations§
impl Copy for PrngOut
impl Eq for PrngOut
impl StructuralPartialEq for PrngOut
Auto Trait Implementations§
impl Freeze for PrngOut
impl RefUnwindSafe for PrngOut
impl Send for PrngOut
impl Sync for PrngOut
impl Unpin for PrngOut
impl UnwindSafe for PrngOut
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