Enum rzw::error::ErrorKind[][src]

pub enum ErrorKind {
    NoController,
    InvalidInput,
    UnknownZWave,
    NotImplemented,
    Io(ErrorKind),
}

Categories of errors that can occur when interacting with z-Wave.

This list is intended to grow over time and it is not recommended to exhaustively match against it.

Variants

The controller is not available.

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

A parameter was incorrect.

A unknown Z-Wave syntax was sent.

This functionallity is not implemented.

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. Read more

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]

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind