pub type R = crate::R<IVLRrs>;
pub type W = crate::W<IVLRrs>;
pub type IV_R = crate::FieldReader<u32>;
pub type IV_W<'a, REG> = crate::FieldWriter<'a, REG, 32, u32>;
impl R {
#[inline(always)]
pub fn iv(&self) -> IV_R {
IV_R::new(self.bits)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("IVLR").field("iv", &self.iv()).finish()
}
}
impl W {
#[inline(always)]
pub fn iv(&mut self) -> IV_W<IVLRrs> {
IV_W::new(self, 0)
}
}
pub struct IVLRrs;
impl crate::RegisterSpec for IVLRrs {
type Ux = u32;
}
impl crate::Readable for IVLRrs {}
impl crate::Writable for IVLRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for IVLRrs {}