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]

[src]

Formats the value using the given formatter.

impl Clone for StatusClass
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for StatusClass
[src]

impl Hash for StatusClass
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

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

impl PartialEq for StatusClass
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for StatusClass
[src]