pub enum DFFR {
EIGHTBIT,
SIXTEENBIT,
}Expand description
Possible values of the field DFF
Variants§
EIGHTBIT
8-bit data frame format is selected for transmission/reception
SIXTEENBIT
16-bit data frame format is selected for transmission/reception
Implementations§
source§impl DFFR
impl DFFR
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_eight_bit(&self) -> bool
pub fn is_eight_bit(&self) -> bool
Checks if the value of the field is EIGHTBIT
sourcepub fn is_sixteen_bit(&self) -> bool
pub fn is_sixteen_bit(&self) -> bool
Checks if the value of the field is SIXTEENBIT