pub enum LBCLR {
NOTOUTPUT,
OUTPUT,
}
Expand description
Possible values of the field LBCL
Variants§
NOTOUTPUT
The clock pulse of the last data bit is not output to the CK pin
OUTPUT
The clock pulse of the last data bit is output to the CK pin
Implementations§
Source§impl LBCLR
impl LBCLR
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_output(&self) -> bool
pub fn is_not_output(&self) -> bool
Checks if the value of the field is NOTOUTPUT
Trait Implementations§
impl Copy for LBCLR
impl StructuralPartialEq for LBCLR
Auto Trait Implementations§
impl Freeze for LBCLR
impl RefUnwindSafe for LBCLR
impl Send for LBCLR
impl Sync for LBCLR
impl Unpin for LBCLR
impl UnwindSafe for LBCLR
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