Enum webtonic_proto::WebTonicError[][src]

pub enum WebTonicError {
    InvalidUrl,
    ConnectionError,
    EncodingError,
    DecodingError,
    ConnectionClosed,
}

The error type of WebTonic.

Variants

InvalidUrl

The url entered is not a valid url.

ConnectionError

The endpoint could not connect to the supplied url.

EncodingError

Error while encoding a Request or Response.

This is likely a bug or implementation shortcomming of WebTonic.

DecodingError

Failed to decode a received packet.

Likely the other side sent a malformed packet.

ConnectionClosed

The connection was closed unexpectedly.

Trait Implementations

impl Clone for WebTonicError[src]

impl Debug for WebTonicError[src]

impl Display for WebTonicError[src]

impl Eq for WebTonicError[src]

impl Error for WebTonicError[src]

impl PartialEq<WebTonicError> for WebTonicError[src]

impl StructuralEq for WebTonicError[src]

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.