Enum rocket::http::StatusClass [] [src]

pub enum StatusClass {
    Informational,
    Success,
    Redirection,
    ClientError,
    ServerError,
    Unknown,
}

Enumeration of HTTP status classes.

Variants

Indicates a provisional response.

Indicates that a request has succeeded.

Indicates that further action needs to be taken by the user agent in order to fulfill the request.

Intended for cases in which the client seems to have erred.

Indicates cases in which the server is aware that it has erred or is incapable of performing the request.

Indicates that the status code is nonstandard and unknown.

Trait Implementations

impl Debug for StatusClass
[src]

Formats the value using the given formatter.

impl Clone for StatusClass
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for StatusClass
[src]

impl Hash for StatusClass
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl PartialEq for StatusClass
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for StatusClass
[src]