stm32wb_pac/aes2/
sidr.rs

1#[doc = "Reader of register SIDR"]
2pub type R = crate::R<u32, super::SIDR>;
3#[doc = "Reader of field `ID`"]
4pub type ID_R = crate::R<u32, u32>;
5impl R {
6    #[doc = "Bits 0:31 - Size Identification code"]
7    #[inline(always)]
8    pub fn id(&self) -> ID_R {
9        ID_R::new((self.bits & 0xffff_ffff) as u32)
10    }
11}