[][src]Struct misskey_core::model::ApiError

pub struct ApiError {
    pub id: ApiErrorId,
    pub message: String,
    pub code: String,
    pub kind: ApiErrorKind,
    pub info: Value,
}

API error returned from Misskey.

Fields

id: ApiErrorId

ID of the error.

message: String

Human-readable description of the error.

code: String

The error code, such as INTERNAL_ERROR.

kind: ApiErrorKind

Kind of the error.

info: Value

Additional information on this error.

Trait Implementations

impl Clone for ApiError[src]

impl Debug for ApiError[src]

impl<'de> Deserialize<'de> for ApiError[src]

impl Display for ApiError[src]

impl Error for ApiError[src]

impl Serialize for ApiError[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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.