Enum bq40z50::Error[][src]

pub enum Error<I2cError> {
    I2cError(I2cError),
}

Variants

I2cError(I2cError)

Trait Implementations

impl<I2cError: Clone> Clone for Error<I2cError>[src]

impl<I2cError: Copy> Copy for Error<I2cError>[src]

impl<I2cError: Debug> Debug for Error<I2cError>[src]

impl<E> From<E> for Error<E>[src]

Auto Trait Implementations

impl<I2cError> RefUnwindSafe for Error<I2cError> where
    I2cError: RefUnwindSafe

impl<I2cError> Send for Error<I2cError> where
    I2cError: Send

impl<I2cError> Sync for Error<I2cError> where
    I2cError: Sync

impl<I2cError> Unpin for Error<I2cError> where
    I2cError: Unpin

impl<I2cError> UnwindSafe for Error<I2cError> where
    I2cError: UnwindSafe

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<!> for T[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.