pub struct R<U, M> { /* private fields */ }
Expand description
Register field reader.
Implementations§
Source§impl<FI> R<bool, FI>
impl<FI> R<bool, FI>
Sourcepub fn bit_is_clear(&self) -> bool
pub fn bit_is_clear(&self) -> bool
Returns true
if the bit is clear (0).
Sourcepub fn bit_is_set(&self) -> bool
pub fn bit_is_set(&self) -> bool
Returns true
is the bit is set (1).
Trait Implementations§
Auto Trait Implementations§
impl<U, M> Freeze for R<U, M>where
U: Freeze,
impl<U, M> RefUnwindSafe for R<U, M>where
U: RefUnwindSafe,
M: RefUnwindSafe,
impl<U, M> Send for R<U, M>
impl<U, M> Sync for R<U, M>
impl<U, M> Unpin for R<U, M>
impl<U, M> UnwindSafe for R<U, M>where
U: UnwindSafe,
M: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more