pub type R = crate::R<VRrs>;
pub type VERSION_R = crate::FieldReader<u32>;
impl R {
#[inline(always)]
pub fn version(&self) -> VERSION_R {
VERSION_R::new(self.bits)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("VR")
.field("version", &self.version())
.finish()
}
}
pub struct VRrs;
impl crate::RegisterSpec for VRrs {
type Ux = u32;
}
impl crate::Readable for VRrs {}
impl crate::Resettable for VRrs {
const RESET_VALUE: u32 = 0x3133_312a;
}