[][src]Enum web_static_pack::hyper_loader::ResponderError

pub enum ResponderError {
    HttpMethodNotSupported,
    LoaderPathNotFound,
    UnparsableAcceptEncoding,
}

Possible errors during Responder handling

Variants

HttpMethodNotSupported

Not supported HTTP Method, this maps to HTTP METHOD_NOT_ALLOWED.

LoaderPathNotFound

Request URI was not found in Loader. This maps to HTTP NOT_FOUND.

UnparsableAcceptEncoding

Error while parsing HTTP Accept-Encoding. This maps to HTTP BAD_REQUEST.

Implementations

impl ResponderError[src]

pub fn as_http_status_code(&self) -> StatusCode[src]

Converts error into best matching HTTP error code

pub fn as_default_response(&self) -> Response<StaticBody>[src]

Creates default response (status code + empty body) for this error.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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.