[][src]Enum civet::status::StatusCode

pub enum StatusCode {
    Informational(u32, &'static str),
    Continue,
    SwitchingProtocols,
    Successful(u32, &'static str),
    OK,
    Created,
    Accepted,
    NonAuthoritativeInformation,
    NoContent,
    ResetContent,
    PartialContent,
    Redirection(u32, &'static str),
    MultipleChoices,
    MovedPermanently,
    Found,
    SeeOther,
    NotModified,
    UseProxy,
    TemporaryRedirect,
    ClientError(u32, &'static str),
    BadRequest,
    Unauthorized,
    Forbidden,
    NotFound,
    MethodNotAllowed,
    NotAcceptable,
    ProxyAuthenticationRequired,
    RequestTimeout,
    Conflict,
    Gone,
    LengthRequired,
    PreconditionFailed,
    RequestEntityTooLarge,
    RequestUriTooLong,
    UnsupportedMediaType,
    RequestedRangeNotSatisfiable,
    ExpectationFailed,
    ServerError(u32, &'static str),
    InternalServerError,
    NotImplemented,
    BadGateway,
    ServiceUnavailable,
    GatewayTimeout,
    HttpVersionNotSupported,
    Other(u32, &'static str),
}

Variants

Informational(u32, &'static str)ContinueSwitchingProtocolsSuccessful(u32, &'static str)OKCreatedAcceptedNonAuthoritativeInformationNoContentResetContentPartialContentRedirection(u32, &'static str)MultipleChoicesMovedPermanentlyFoundSeeOtherNotModifiedUseProxyTemporaryRedirectClientError(u32, &'static str)BadRequestUnauthorizedForbiddenNotFoundMethodNotAllowedNotAcceptableProxyAuthenticationRequiredRequestTimeoutConflictGoneLengthRequiredPreconditionFailedRequestEntityTooLargeRequestUriTooLongUnsupportedMediaTypeRequestedRangeNotSatisfiableExpectationFailedServerError(u32, &'static str)InternalServerErrorNotImplementedBadGatewayServiceUnavailableGatewayTimeoutHttpVersionNotSupportedOther(u32, &'static str)

Methods

impl StatusCode[src]

pub fn to_code(&self) -> (u32, &'static str)[src]

Trait Implementations

impl ToStatusCode for StatusCode[src]

impl Clone for StatusCode[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for StatusCode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]