Enum vex_rt::adi::AdiEncoderError[][src]

pub enum AdiEncoderError {
    PortsOutOfRange,
    PortsNotAdiEncoder,
    PortNonMatchingExtenders,
    Unknown(i32),
}

Represents possible errors for ADI encoder operations.

Variants

PortsOutOfRange

Ports are out of range (1-8).

PortsNotAdiEncoder

Ports cannot be configured as an ADI encoder.

PortNonMatchingExtenders

Ports are from non matching extenders

Unknown(i32)

Unknown error.

Trait Implementations

impl Debug for AdiEncoderError[src]

impl From<AdiEncoderError> for Error[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, 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.