pub enum ErrorKind {
NoDevice,
InvalidInput,
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.
Io(ErrorKind)
An I/O error occured.
The type of I/O error is determined by the inner io::ErrorKind
.
Trait Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)