Enum serial_core::ErrorKind
[−]
[src]
pub enum ErrorKind { NoDevice, InvalidInput, Io(ErrorKind), }
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 Debug for ErrorKind
[src]
impl Clone for ErrorKind
[src]
fn clone(&self) -> ErrorKind
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Copy for ErrorKind
[src]
impl PartialEq for ErrorKind
[src]
fn eq(&self, __arg_0: &ErrorKind) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ErrorKind) -> bool
This method tests for !=
.