Enum cd74hc4067::Error[][src]

pub enum Error<P: OutputPin, E: OutputPin> {
    SelectPinError(P::Error),
    EnablePinError(E::Error),
}

Errors of this crate

Variants

SelectPinError(P::Error)

Error setting a pin

EnablePinError(E::Error)

Error enabling/disabling

Trait Implementations

impl<P: Clone + OutputPin, E: Clone + OutputPin> Clone for Error<P, E> where
    P::Error: Clone,
    E::Error: Clone
[src]

impl<P: Copy + OutputPin, E: Copy + OutputPin> Copy for Error<P, E> where
    P::Error: Copy,
    E::Error: Copy
[src]

impl<P: Debug + OutputPin, E: Debug + OutputPin> Debug for Error<P, E> where
    P::Error: Debug,
    E::Error: Debug
[src]

impl<P: Eq + OutputPin, E: Eq + OutputPin> Eq for Error<P, E> where
    P::Error: Eq,
    E::Error: Eq
[src]

impl<P: PartialEq + OutputPin, E: PartialEq + OutputPin> PartialEq<Error<P, E>> for Error<P, E> where
    P::Error: PartialEq,
    E::Error: PartialEq
[src]

impl<P: OutputPin, E: OutputPin> StructuralEq for Error<P, E>[src]

impl<P: OutputPin, E: OutputPin> StructuralPartialEq for Error<P, E>[src]

Auto Trait Implementations

impl<P, E> Send for Error<P, E> where
    <E as OutputPin>::Error: Send,
    <P as OutputPin>::Error: Send
[src]

impl<P, E> Sync for Error<P, E> where
    <E as OutputPin>::Error: Sync,
    <P as OutputPin>::Error: Sync
[src]

impl<P, E> Unpin for Error<P, E> where
    <E as OutputPin>::Error: Unpin,
    <P as OutputPin>::Error: 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<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.