[][src]Enum esp_idf_bindgen::uart_mode_t

#[repr(u32)]pub enum uart_mode_t {
    UART_MODE_UART,
    UART_MODE_RS485_HALF_DUPLEX,
    UART_MODE_IRDA,
    UART_MODE_RS485_COLLISION_DETECT,
    UART_MODE_RS485_APP_CTRL,
}

@brief UART mode selection

Variants

UART_MODE_UART

< mode: regular UART mode

UART_MODE_RS485_HALF_DUPLEX

< mode: half duplex RS485 UART mode control by RTS pin

UART_MODE_IRDA

< mode: IRDA UART mode

UART_MODE_RS485_COLLISION_DETECT

< mode: RS485 collision detection UART mode (used for test purposes)

UART_MODE_RS485_APP_CTRL

< mode: application control RS485 UART mode (used for test purposes)

Trait Implementations

impl Clone for uart_mode_t[src]

impl Copy for uart_mode_t[src]

impl Debug for uart_mode_t[src]

impl Eq for uart_mode_t[src]

impl Hash for uart_mode_t[src]

impl PartialEq<uart_mode_t> for uart_mode_t[src]

impl StructuralEq for uart_mode_t[src]

impl StructuralPartialEq for uart_mode_t[src]

Auto Trait Implementations

impl Send for uart_mode_t

impl Sync for uart_mode_t

impl Unpin for uart_mode_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.