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>),
}pub type UartIoResult<T, E> = Result<T, UartIoError<E>>;Result alias for UART IO operations.
pub enum UartIoResult<T, E> {
Ok(T),
Err(UartIoError<E>),
}