Enum tps6507x::Tps6507xError[][src]

pub enum Tps6507xError<E> {
    ReadBackMismatch,
    Interface(E),
}

Variants

ReadBackMismatch

Performed read back mismatched with previously wrote value

Interface(E)

Propagated error from the interface

Trait Implementations

impl<E: Debug> Debug for Tps6507xError<E>[src]

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

Auto Trait Implementations

impl<E> Send for Tps6507xError<E> where
    E: Send
[src]

impl<E> Sync for Tps6507xError<E> where
    E: Sync
[src]

impl<E> Unpin for Tps6507xError<E> where
    E: Unpin
[src]

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, 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.