#[repr(i32)]
#[non_exhaustive]
pub enum EHTTPStatusCode {
Show 45 variants k_EHTTPStatusCodeInvalid, k_EHTTPStatusCode100Continue, k_EHTTPStatusCode101SwitchingProtocols, k_EHTTPStatusCode200OK, k_EHTTPStatusCode201Created, k_EHTTPStatusCode202Accepted, k_EHTTPStatusCode203NonAuthoritative, k_EHTTPStatusCode204NoContent, k_EHTTPStatusCode205ResetContent, k_EHTTPStatusCode206PartialContent, k_EHTTPStatusCode300MultipleChoices, k_EHTTPStatusCode301MovedPermanently, k_EHTTPStatusCode302Found, k_EHTTPStatusCode303SeeOther, k_EHTTPStatusCode304NotModified, k_EHTTPStatusCode305UseProxy, k_EHTTPStatusCode307TemporaryRedirect, k_EHTTPStatusCode400BadRequest, k_EHTTPStatusCode401Unauthorized, k_EHTTPStatusCode402PaymentRequired, k_EHTTPStatusCode403Forbidden, k_EHTTPStatusCode404NotFound, k_EHTTPStatusCode405MethodNotAllowed, k_EHTTPStatusCode406NotAcceptable, k_EHTTPStatusCode407ProxyAuthRequired, k_EHTTPStatusCode408RequestTimeout, k_EHTTPStatusCode409Conflict, k_EHTTPStatusCode410Gone, k_EHTTPStatusCode411LengthRequired, k_EHTTPStatusCode412PreconditionFailed, k_EHTTPStatusCode413RequestEntityTooLarge, k_EHTTPStatusCode414RequestURITooLong, k_EHTTPStatusCode415UnsupportedMediaType, k_EHTTPStatusCode416RequestedRangeNotSatisfiable, k_EHTTPStatusCode417ExpectationFailed, k_EHTTPStatusCode4xxUnknown, k_EHTTPStatusCode429TooManyRequests, k_EHTTPStatusCode444ConnectionClosed, k_EHTTPStatusCode500InternalServerError, k_EHTTPStatusCode501NotImplemented, k_EHTTPStatusCode502BadGateway, k_EHTTPStatusCode503ServiceUnavailable, k_EHTTPStatusCode504GatewayTimeout, k_EHTTPStatusCode505HTTPVersionNotSupported, k_EHTTPStatusCode5xxUnknown,
}

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

k_EHTTPStatusCodeInvalid

k_EHTTPStatusCode100Continue

k_EHTTPStatusCode101SwitchingProtocols

k_EHTTPStatusCode200OK

k_EHTTPStatusCode201Created

k_EHTTPStatusCode202Accepted

k_EHTTPStatusCode203NonAuthoritative

k_EHTTPStatusCode204NoContent

k_EHTTPStatusCode205ResetContent

k_EHTTPStatusCode206PartialContent

k_EHTTPStatusCode300MultipleChoices

k_EHTTPStatusCode301MovedPermanently

k_EHTTPStatusCode302Found

k_EHTTPStatusCode303SeeOther

k_EHTTPStatusCode304NotModified

k_EHTTPStatusCode305UseProxy

k_EHTTPStatusCode307TemporaryRedirect

k_EHTTPStatusCode400BadRequest

k_EHTTPStatusCode401Unauthorized

k_EHTTPStatusCode402PaymentRequired

k_EHTTPStatusCode403Forbidden

k_EHTTPStatusCode404NotFound

k_EHTTPStatusCode405MethodNotAllowed

k_EHTTPStatusCode406NotAcceptable

k_EHTTPStatusCode407ProxyAuthRequired

k_EHTTPStatusCode408RequestTimeout

k_EHTTPStatusCode409Conflict

k_EHTTPStatusCode410Gone

k_EHTTPStatusCode411LengthRequired

k_EHTTPStatusCode412PreconditionFailed

k_EHTTPStatusCode413RequestEntityTooLarge

k_EHTTPStatusCode414RequestURITooLong

k_EHTTPStatusCode415UnsupportedMediaType

k_EHTTPStatusCode416RequestedRangeNotSatisfiable

k_EHTTPStatusCode417ExpectationFailed

k_EHTTPStatusCode4xxUnknown

k_EHTTPStatusCode429TooManyRequests

k_EHTTPStatusCode444ConnectionClosed

k_EHTTPStatusCode500InternalServerError

k_EHTTPStatusCode501NotImplemented

k_EHTTPStatusCode502BadGateway

k_EHTTPStatusCode503ServiceUnavailable

k_EHTTPStatusCode504GatewayTimeout

k_EHTTPStatusCode505HTTPVersionNotSupported

k_EHTTPStatusCode5xxUnknown

Trait Implementations

Returns a copy of the value. Read more

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

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.