Enum mio_serial::ErrorKind
source · pub enum ErrorKind {
NoDevice,
InvalidInput,
Unknown,
Io(ErrorKind),
}
Expand description
Categories of errors that can occur when interacting with serial ports
This list is intended to grow over time and it is not recommended to exhaustively match against it.
Variants§
NoDevice
The device is not available.
This could indicate that the device is in use by another process or was disconnected while performing I/O.
InvalidInput
A parameter was incorrect.
Unknown
An unknown error occurred.
Io(ErrorKind)
An I/O error occurred.
The type of I/O error is determined by the inner io::ErrorKind
.
Trait Implementations§
source§impl PartialEq for ErrorKind
impl PartialEq for ErrorKind
impl Copy for ErrorKind
impl Eq for ErrorKind
impl StructuralPartialEq for ErrorKind
Auto Trait Implementations§
impl Freeze for ErrorKind
impl RefUnwindSafe for ErrorKind
impl Send for ErrorKind
impl Sync for ErrorKind
impl Unpin for ErrorKind
impl UnwindSafe for ErrorKind
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more