pub trait ResponseExt {
    fn ok(&self) -> bool;
    fn location(location: &'static str) -> Self;
    fn redirect<T>(url: T) -> Response
    where
        T: AsRef<str>
; fn redirect_with_status<T>(uri: T, status: StatusCode) -> Response
    where
        T: AsRef<str>
; fn with<T>(t: T, c: &'static str) -> Response
    where
        T: Into<Body>
, { ... } fn text<T>(t: T) -> Response
    where
        T: Into<Body>
, { ... } fn html<T>(t: T) -> Response
    where
        T: Into<Body>
, { ... } fn json<T>(t: T) -> Result<Response, PayloadError>
    where
        T: Serialize
, { ... } fn stream<S, O, E>(s: S) -> Response
    where
        S: Stream<Item = Result<O, E>> + Send + 'static,
        O: Into<Bytes> + 'static,
        E: Error + Send + Sync + 'static
, { ... } fn see_other<T>(url: T) -> Response
    where
        T: AsRef<str>
, { ... } fn temporary<T>(url: T) -> Response
    where
        T: AsRef<str>
, { ... } fn permanent<T>(url: T) -> Response
    where
        T: AsRef<str>
, { ... } }

Required Methods

The response was successful (status in the range 200-299) or not.

The response redirects to the specified URL.

The response redirects to the specified URL and the status code.

Provided Methods

Response body with Content-Type

Response TEXT

Response HTML

Available on crate feature json only.

Response JSON

Response Stream

Implementors