pub trait IntoResponse: Sized {
    fn into_response(self) -> Response;

    fn into_error(self) -> Error { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors

Responds with JSON Data.