pub type R = crate::R<IVRRrs>;
pub type W = crate::W<IVRRrs>;
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("IVRR").field("iv", &self.iv()).finish()
}
}
impl W {
#[inline(always)]
pub fn iv(&mut self) -> IV_W<IVRRrs> {
IV_W::new(self, 0)
}
}
pub struct IVRRrs;
impl crate::RegisterSpec for IVRRrs {
type Ux = u32;
}
impl crate::Readable for IVRRrs {}
impl crate::Writable for IVRRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for IVRRrs {}