stm32f2/stm32f215/cryp/
dout.rs1pub type R = crate::R<DOUTrs>;
3pub type DATAOUT_R = crate::FieldReader<u32>;
5impl R {
6 #[inline(always)]
8 pub fn dataout(&self) -> DATAOUT_R {
9 DATAOUT_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("DOUT")
15 .field("dataout", &self.dataout())
16 .finish()
17 }
18}
19pub struct DOUTrs;
25impl crate::RegisterSpec for DOUTrs {
26 type Ux = u32;
27}
28impl crate::Readable for DOUTrs {}
30impl crate::Resettable for DOUTrs {}