Enum blinkt::Error []

pub enum Error {
    GPIO(GPIOError),
}

Errors that can occur when creating a new Blinkt.

Variants

Accessing the GPIO peripheral returned an error.

Some of these errors can be fixed by changing file permissions, or upgrading to a newer version of Raspbian.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error

Formats the value using the given formatter.

impl Error for Error

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<GPIOError> for Error

Performs the conversion.