[][src]Enum minirpc::error::Code

pub enum Code {
    ParseError,
    InvalidRequest,
    MethodNotFound,
    InvalidParams,
    InternalError,
    ServerError(i64),
}

Error code.

Variants

ParseError

Invalid JSON was received by the server. An error occurred on the server while parsing the JSON text.

InvalidRequest

The JSON sent is not a valid Request object.

MethodNotFound

The method does not exist / is not available.

InvalidParams

Invalid method parameter(s).

InternalError

Internal MINI-RPC error.

ServerError(i64)

Reserved for implementation-defined server-errors.

Methods

impl Code[src]

pub fn message(&self) -> &str[src]

Trait Implementations

impl PartialEq<Code> for Code[src]

impl Debug for Code[src]

impl Serialize for Code[src]

impl<'a> Deserialize<'a> for Code[src]

Auto Trait Implementations

impl Send for Code

impl Unpin for Code

impl Sync for Code

impl RefUnwindSafe for Code

impl UnwindSafe for Code

Blanket Implementations

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]