pub enum TXCTSER {
_0,
_1,
}Expand description
Possible values of the field TXCTSE
Variants§
_0
CTS has no effect on the transmitter.
_1
Enables clear-to-send operation. The transmitter checks the state of CTS each time it is ready to send a character. If CTS is asserted, the character is sent. If CTS is deasserted, the signal TXD remains in the mark state and transmission is delayed until CTS is asserted. Changes in CTS as a character is being sent do not affect its transmission.
Implementations§
Source§impl TXCTSER
impl TXCTSER
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)
Trait Implementations§
impl Copy for TXCTSER
impl StructuralPartialEq for TXCTSER
Auto Trait Implementations§
impl Freeze for TXCTSER
impl RefUnwindSafe for TXCTSER
impl Send for TXCTSER
impl Sync for TXCTSER
impl Unpin for TXCTSER
impl UnwindSafe for TXCTSER
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