#[doc = "Register `STATUSB` reader"] pub struct R(crate::R); impl core::ops::Deref for R { type Target = crate::R; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } impl From> for R { #[inline(always)] fn from(reader: crate::R) -> Self { R(reader) } } #[doc = "Field `READY0` reader - Comparator 0 Ready"] pub struct READY0_R(crate::FieldReader); impl READY0_R { pub(crate) fn new(bits: bool) -> Self { READY0_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for READY0_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `READY1` reader - Comparator 1 Ready"] pub struct READY1_R(crate::FieldReader); impl READY1_R { pub(crate) fn new(bits: bool) -> Self { READY1_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for READY1_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `READY2` reader - Comparator 2 Ready"] pub struct READY2_R(crate::FieldReader); impl READY2_R { pub(crate) fn new(bits: bool) -> Self { READY2_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for READY2_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `READY3` reader - Comparator 3 Ready"] pub struct READY3_R(crate::FieldReader); impl READY3_R { pub(crate) fn new(bits: bool) -> Self { READY3_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for READY3_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } impl R { #[doc = "Bit 0 - Comparator 0 Ready"] #[inline(always)] pub fn ready0(&self) -> READY0_R { READY0_R::new((self.bits & 0x01) != 0) } #[doc = "Bit 1 - Comparator 1 Ready"] #[inline(always)] pub fn ready1(&self) -> READY1_R { READY1_R::new(((self.bits >> 1) & 0x01) != 0) } #[doc = "Bit 2 - Comparator 2 Ready"] #[inline(always)] pub fn ready2(&self) -> READY2_R { READY2_R::new(((self.bits >> 2) & 0x01) != 0) } #[doc = "Bit 3 - Comparator 3 Ready"] #[inline(always)] pub fn ready3(&self) -> READY3_R { READY3_R::new(((self.bits >> 3) & 0x01) != 0) } } #[doc = "Status B\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [statusb](index.html) module"] pub struct STATUSB_SPEC; impl crate::RegisterSpec for STATUSB_SPEC { type Ux = u8; } #[doc = "`read()` method returns [statusb::R](R) reader structure"] impl crate::Readable for STATUSB_SPEC { type Reader = R; } #[doc = "`reset()` method sets STATUSB to value 0"] impl crate::Resettable for STATUSB_SPEC { #[inline(always)] fn reset_value() -> Self::Ux { 0 } }