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

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

Enumeration of HTTP status classes.

Variants

Indicates a provisional response: a status code of 1XX.

Indicates that a request has succeeded: a status code of 2XX.

Indicates that further action needs to be taken by the user agent in order to fulfill the request: a status code of 3XX.

Intended for cases in which the client seems to have erred: a status code of 4XX.

Indicates cases in which the server is aware that it has erred or is incapable of performing the request: a status code of 5XX.

Indicates that the status code is nonstandard and unknown: all other status codes.

Methods

impl StatusClass
[src]

Returns true if self is a StatusClass of Informational (1XX). Returns false otherwise.

Returns true if self is a StatusClass of Success (2XX). Returns false otherwise.

Returns true if self is a StatusClass of Redirection (3XX). Returns false otherwise.

Returns true if self is a StatusClass of ClientError (4XX). Returns false otherwise.

Returns true if self is a StatusClass of ServerError (5XX). Returns false otherwise.

Returns true if self is a StatusClass of Unknown. Returns false otherwise.

Trait Implementations

impl Debug for StatusClass
[src]

Formats the value using the given formatter. Read more

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 given [Hasher]. Read more

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

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]

Auto Trait Implementations

impl Send for StatusClass

impl Sync for StatusClass