[]Enum tokio_serial::ErrorKind

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

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.

Unknown

An unknown error occurred.

Io(ErrorKind)

An I/O error occurred.

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

Trait Implementations

impl Clone for ErrorKind

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for ErrorKind

impl Copy for ErrorKind

impl Debug for ErrorKind

impl PartialEq<ErrorKind> for ErrorKind

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T