Skip to main content

UartIoResult

Type Alias UartIoResult 

Source
pub type UartIoResult<T, E> = Result<T, UartIoError<E>>;
Expand description

Result alias for UART IO operations.

Aliased Type§

pub enum UartIoResult<T, E> {
    Ok(T),
    Err(UartIoError<E>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(UartIoError<E>)

Contains the error value