Struct seamless::api::ApiError[][src]

pub struct ApiError {
    pub code: u16,
    pub internal_message: String,
    pub external_message: String,
    pub value: Option<Value>,
}

This represents an API error that is returned from the API.

Fields

code: u16

What the HTTP status code should be for this error response.

internal_message: String

A message that can be logged internally but should not be shown to API consumers.

external_message: String

A message that can be shown to API consumers.

value: Option<Value>

Some optional context which could contain arbitrary information. It's expected that this could be handed back to API consumers and so shouldn't contain anything sensitive.

Implementations

impl ApiError[src]

pub fn server_error<S: Into<String>>(msg: S) -> ApiError[src]

A helper to instantiate a server error.

pub fn path_not_found() -> ApiError[src]

A helper to instantiate a 404 not found error.

pub fn not_authorized(reason: &str) -> ApiError[src]

A helper to instantiate a not authorized error.

Trait Implementations

impl Clone for ApiError[src]

impl Debug for ApiError[src]

impl From<Infallible> for ApiError[src]

impl PartialEq<ApiError> for ApiError[src]

impl StructuralPartialEq 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> 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, 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.