[][src]Enum vapix::Error

pub enum Error<TE> {
    TransportError(TE),
    BadStatusCodeError(StatusCode),
    BadContentTypeError(Option<HeaderValue>),
    UnparseableResponseError(UnparseableResponseError),
    ApiError(ApiError),
    UnsupportedFeature,
    Other(&'static str),
}

An error returned by the axis crate.

Error<TE> is parameterized by the transport error type TE.

Variants

TransportError(TE)

An error from the transport.

BadStatusCodeError(StatusCode)

An HTTP request returned a status code indicating failure.

BadContentTypeError(Option<HeaderValue>)

An HTTP request returned an unexpected content type.

UnparseableResponseError(UnparseableResponseError)

An HTTP request returned a response which could not be parsed.

ApiError(ApiError)

The API call returned a structured error.

UnsupportedFeature

The device does not support this feature.

Other(&'static str)

An error which isn't yet properly itemized.

Trait Implementations

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

impl<TE: Display> Display for Error<TE>[src]

impl<TE: Error> Error for Error<TE>[src]

impl<TE> From<DeError> for Error<TE>[src]

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

Auto Trait Implementations

impl<TE> !RefUnwindSafe for Error<TE>

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

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

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

impl<TE> !UnwindSafe for Error<TE>

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,