[][src]Enum esp_idf_bindgen::uart_event_type_t

#[repr(u32)]pub enum uart_event_type_t {
    UART_DATA,
    UART_BREAK,
    UART_BUFFER_FULL,
    UART_FIFO_OVF,
    UART_FRAME_ERR,
    UART_PARITY_ERR,
    UART_DATA_BREAK,
    UART_PATTERN_DET,
    UART_EVENT_MAX,
}

@brief UART event types used in the ring buffer

Variants

UART_DATA

< UART data event

UART_BREAK

< UART break event

UART_BUFFER_FULL

< UART RX buffer full event

UART_FIFO_OVF

< UART FIFO overflow event

UART_FRAME_ERR

< UART RX frame error event

UART_PARITY_ERR

< UART RX parity event

UART_DATA_BREAK

< UART TX data and break event

UART_PATTERN_DET

< UART pattern detected

UART_EVENT_MAX

< UART event max index

Trait Implementations

impl Clone for uart_event_type_t[src]

impl Copy for uart_event_type_t[src]

impl Debug for uart_event_type_t[src]

impl Eq for uart_event_type_t[src]

impl Hash for uart_event_type_t[src]

impl PartialEq<uart_event_type_t> for uart_event_type_t[src]

impl StructuralEq for uart_event_type_t[src]

impl StructuralPartialEq for uart_event_type_t[src]

Auto Trait Implementations

impl Send for uart_event_type_t

impl Sync for uart_event_type_t

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