pub enum StatusClass {
Informational,
Success,
Redirection,
ClientError,
ServerError,
Unknown,
}
Enumeration of HTTP status classes.
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.
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.
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
Performs copy-assignment from source
. Read more
Formats the value using the given formatter. Read more
Feeds this value into the given [Hasher
]. Read more
Feeds a slice of this type into the given [Hasher
]. Read more
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Immutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
🔬 This is a nightly-only experimental API. (try_from
)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from
)
Mutably borrows from an owned value. Read more
Get the TypeId
of this object.