[][src]Enum easy_jsonrpc_mw::ResponseFail

pub enum ResponseFail {
    ResultNotFound,
    InvalidResponse,
    RpcError(Error),
}

Error returned when a tracker fails to retrive its response.

Variants

ResultNotFound

Server responded, but Server did not specify a result for the call in question.

InvalidResponse

Server specified a result for the call in question, but it the result was malformed.

RpcError(Error)

Server specified a result for the call in question and the result was an rpc error.

Trait Implementations

impl Clone for ResponseFail[src]

impl PartialEq<ResponseFail> for ResponseFail[src]

impl Debug for ResponseFail[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]