[][src]Struct rocket_json::Error

pub struct Error(pub Status);

A specialized Status struct that responds json errors.

This struct implements a Responder that will return json.

Examples

use rocket_contrib::json::JsonValue;
use rocket_json::{Error, Result};

fn example(error: bool) -> Result<JsonValue> {
    if error {
        // Rocket will return status code 503:
        // { "reason": "Service Unavailable", "status": 503 }
        return Err(Error::ServiceUnavailable);
    }
    // Rocket will return status code 200:
    // { "example": 42 }
    Ok(json!({ "example": 42 }))
}

Methods

impl Error[src]

Trait Implementations

impl Eq for Error[src]

impl AsMut<Status> for Error[src]

impl PartialEq<Error> for Error[src]

impl Copy for Error[src]

impl Clone for Error[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl AsRef<Status> for Error[src]

impl From<Status> for Error[src]

impl Debug for Error[src]

impl Hash for Error[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<'r> Responder<'r> for Error[src]

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> IntoCollection<T> for T

impl<T, I> AsResult<T, I> for T where
    I: Input, 

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]