1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#[doc = "Reader of register MMCRGUFCR"]
pub type R = crate::R<u32, super::MMCRGUFCR>;
#[doc = "Reader of field `RGUFC`"]
pub type RGUFC_R = crate::R<u32, u32>;
impl R {
    #[doc = "Bits 0:31 - Received good unicast frames counter"]
    #[inline(always)]
    pub fn rgufc(&self) -> RGUFC_R {
        RGUFC_R::new((self.bits & 0xffff_ffff) as u32)
    }
}