Enum dmx_serial::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

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 I/O error occured.

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

Trait Implementations

impl Debug for ErrorKind
[src]

Formats the value using the given formatter.

impl Clone for ErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ErrorKind
[src]

impl PartialEq for ErrorKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ErrorKind
[src]