pub type UartResult<T, E> = Result<T, UartError<E>>;
Result alias for UART adapter operations.
pub enum UartResult<T, E> { Ok(T), Err(UartError<E>), }
Contains the success value
Contains the error value