[][src]Enum esp_idf_bindgen::uart_hw_flowcontrol_t

#[repr(u32)]pub enum uart_hw_flowcontrol_t {
    UART_HW_FLOWCTRL_DISABLE,
    UART_HW_FLOWCTRL_RTS,
    UART_HW_FLOWCTRL_CTS,
    UART_HW_FLOWCTRL_CTS_RTS,
    UART_HW_FLOWCTRL_MAX,
}

@brief UART hardware flow control modes

Variants

UART_HW_FLOWCTRL_DISABLE

< disable hardware flow control

UART_HW_FLOWCTRL_RTS

< enable RX hardware flow control (rts)

UART_HW_FLOWCTRL_CTS

< enable TX hardware flow control (cts)

UART_HW_FLOWCTRL_CTS_RTS

< enable hardware flow control

UART_HW_FLOWCTRL_MAX

Trait Implementations

impl Clone for uart_hw_flowcontrol_t[src]

impl Copy for uart_hw_flowcontrol_t[src]

impl Debug for uart_hw_flowcontrol_t[src]

impl Eq for uart_hw_flowcontrol_t[src]

impl Hash for uart_hw_flowcontrol_t[src]

impl PartialEq<uart_hw_flowcontrol_t> for uart_hw_flowcontrol_t[src]

impl StructuralEq for uart_hw_flowcontrol_t[src]

impl StructuralPartialEq for uart_hw_flowcontrol_t[src]

Auto Trait Implementations

impl Send for uart_hw_flowcontrol_t

impl Sync for uart_hw_flowcontrol_t

impl Unpin for uart_hw_flowcontrol_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.