Res

Trait Res 

pub trait Res {
    // Required methods
    fn error_response(path: &str, err: Bytes) -> Self;
    fn redirect(&mut self, path: &str);

    // Provided method
    fn content_type(&mut self, content_type: &str) { ... }
}
Expand description

Represents the response as created by the server;

Required Methods§

fn error_response(path: &str, err: Bytes) -> Self

Converts an error into a response, with a 500 status code and the error as its body.

fn redirect(&mut self, path: &str)

Redirect the response by setting a 302 code and Location header.

Provided Methods§

fn content_type(&mut self, content_type: &str)

Set the Content-Type header for the response.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§