stm32f7_staging/stm32f779/rng/
dr.rs1pub type R = crate::R<DRrs>;
3pub type RNDATA_R = crate::FieldReader<u32>;
5impl R {
6 #[inline(always)]
8 pub fn rndata(&self) -> RNDATA_R {
9 RNDATA_R::new(self.bits)
10 }
11}
12impl core::fmt::Debug for R {
13 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
14 f.debug_struct("DR")
15 .field("rndata", &self.rndata())
16 .finish()
17 }
18}
19pub struct DRrs;
25impl crate::RegisterSpec for DRrs {
26 type Ux = u32;
27}
28impl crate::Readable for DRrs {}
30impl crate::Resettable for DRrs {}