stm32f2/stm32f215/cryp/
dout.rs

1///Register `DOUT` reader
2pub type R = crate::R<DOUTrs>;
3///Field `DATAOUT` reader - Data output
4pub type DATAOUT_R = crate::FieldReader<u32>;
5impl R {
6    ///Bits 0:31 - Data output
7    #[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}
19/**data output register
20
21You can [`read`](crate::Reg::read) this register and get [`dout::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api).
22
23See register [structure](https://stm32-rs.github.io/stm32-rs/STM32F215.html#CRYP:DOUT)*/
24pub struct DOUTrs;
25impl crate::RegisterSpec for DOUTrs {
26    type Ux = u32;
27}
28///`read()` method returns [`dout::R`](R) reader structure
29impl crate::Readable for DOUTrs {}
30///`reset()` method sets DOUT to value 0
31impl crate::Resettable for DOUTrs {}