pub enum LSEBYPR {
NOTBYPASSED,
BYPASSED,
}
Expand description
Possible values of the field LSEBYP
Variants§
NOTBYPASSED
LSE crystal oscillator not bypassed
BYPASSED
LSE crystal oscillator bypassed with external clock
Implementations§
Source§impl LSEBYPR
impl LSEBYPR
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
if the bit is set (1)
Sourcepub fn is_not_bypassed(&self) -> bool
pub fn is_not_bypassed(&self) -> bool
Checks if the value of the field is NOTBYPASSED
Sourcepub fn is_bypassed(&self) -> bool
pub fn is_bypassed(&self) -> bool
Checks if the value of the field is BYPASSED
Trait Implementations§
impl Copy for LSEBYPR
impl StructuralPartialEq for LSEBYPR
Auto Trait Implementations§
impl Freeze for LSEBYPR
impl RefUnwindSafe for LSEBYPR
impl Send for LSEBYPR
impl Sync for LSEBYPR
impl Unpin for LSEBYPR
impl UnwindSafe for LSEBYPR
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