Enum mio_serial::ErrorKind [] [src]

pub enum ErrorKind {
    NoDevice,
    InvalidInput,
    Unknown,
    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

The device is not available.

This could indicate that the device is in use by another process or was disconnected while performing I/O.

A parameter was incorrect.

An unknown error occurred.

An I/O error occurred.

The type of I/O error is determined by the inner io::ErrorKind.

Trait Implementations

impl Copy for ErrorKind
[src]

impl Clone for ErrorKind
[src]

[src]

impl Eq for ErrorKind
[src]

impl PartialEq<ErrorKind> for ErrorKind
[src]

[src]

[src]

impl Debug for ErrorKind
[src]

[src]