Enum serial::ErrorKind [] [src]

pub enum ErrorKind {
    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

InvalidInput

A parameter was incorrect.

This most likely means that a parameter is not supported by the underlying hardware.

Io(ErrorKind)

An I/O error occured.

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

Trait Implementations

impl Eq 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 !=.

impl Copy 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 Debug for ErrorKind
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.