pub enum UartError {
GenericError,
PortBusy,
IoError {
cause: ErrorKind,
description: String,
},
SerialError {
cause: ErrorKind,
description: String,
},
}
Custom errors for UART actions
A read/write call was made while another call was already in-progress
An I/O error was thrown by the kernel
Fields of IoError
An error was thrown by the serial driver
Fields of SerialError
cause: ErrorKind | The underlying error type
|
description: String | |
Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more
Returns a reference to the Backtrace
carried by this failure, if it carries one. Read more
[−]
fn compat(self) -> Compat<Self> | |
[−]
Wraps this failure in a compatibility wrapper that implements std::error::Error
. Read more
Formats the value using the given formatter. Read more
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more