esp32 0.40.1

Peripheral access crate for the ESP32
Documentation
#[doc = "Register `MMU_IA_INT_EN` reader"]
pub type R = crate::R<MMU_IA_INT_EN_SPEC>;
#[doc = "Register `MMU_IA_INT_EN` writer"]
pub type W = crate::W<MMU_IA_INT_EN_SPEC>;
#[doc = "Field `MMU_IA_INT_EN` reader - "]
pub type MMU_IA_INT_EN_R = crate::FieldReader<u32>;
#[doc = "Field `MMU_IA_INT_EN` writer - "]
pub type MMU_IA_INT_EN_W<'a, REG> = crate::FieldWriter<'a, REG, 24, u32>;
impl R {
    #[doc = "Bits 0:23"]
    #[inline(always)]
    pub fn mmu_ia_int_en(&self) -> MMU_IA_INT_EN_R {
        MMU_IA_INT_EN_R::new(self.bits & 0x00ff_ffff)
    }
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("MMU_IA_INT_EN")
            .field("mmu_ia_int_en", &self.mmu_ia_int_en())
            .finish()
    }
}
impl W {
    #[doc = "Bits 0:23"]
    #[inline(always)]
    pub fn mmu_ia_int_en(&mut self) -> MMU_IA_INT_EN_W<'_, MMU_IA_INT_EN_SPEC> {
        MMU_IA_INT_EN_W::new(self, 0)
    }
}
#[doc = "\n\nYou can [`read`](crate::Reg::read) this register and get [`mmu_ia_int_en::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`mmu_ia_int_en::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct MMU_IA_INT_EN_SPEC;
impl crate::RegisterSpec for MMU_IA_INT_EN_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`mmu_ia_int_en::R`](R) reader structure"]
impl crate::Readable for MMU_IA_INT_EN_SPEC {}
#[doc = "`write(|w| ..)` method takes [`mmu_ia_int_en::W`](W) writer structure"]
impl crate::Writable for MMU_IA_INT_EN_SPEC {
    type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets MMU_IA_INT_EN to value 0"]
impl crate::Resettable for MMU_IA_INT_EN_SPEC {}