Enum mijia::MijiaError[][src]

pub enum MijiaError {
    Bluetooth(BluetoothError),
    Decoding(DecodeError),
    Encoding(EncodeError),
}

An error interacting with a Mijia sensor.

Variants

Bluetooth(BluetoothError)

The error was with the Bluetooth connection.

Decoding(DecodeError)

The error was with decoding a value from a sensor.

Encoding(EncodeError)

The error was with encoding a value to send to a sensor.

Trait Implementations

impl Debug for MijiaError[src]

impl Display for MijiaError[src]

impl Error for MijiaError[src]

impl From<BluetoothError> for MijiaError[src]

impl From<DecodeError> for MijiaError[src]

impl From<EncodeError> for MijiaError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.