[][src]Enum rocket::error::Error

pub enum Error {
    BadMethod,
    BadParse,
    NoRoute,
    Internal,
    NoKey,
}

[unstable] Error type for Rocket. Likely to change.

Variants

The request method was bad.

The value could not be parsed.

There was no such route.

The error was internal.

The requested key/index does not exist.

Trait Implementations

impl PartialEq<Error> for Error
[src]

This method tests for !=.

impl Clone for Error
[src]

Performs copy-assignment from source. Read more

impl Copy for Error
[src]

impl Eq for Error
[src]

impl Debug for Error
[src]

impl Hash for Error
[src]

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

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Typeable for T where
    T: Any
[src]

Get the TypeId of this object.