IntoResponse

Trait IntoResponse 

Source
pub trait IntoResponse {
    // Required method
    fn into_response(self, _: Arc<Tree>) -> Response<Body>;
}
Expand description

Types that may be produced in response to some request.

Required Methods§

Source

fn into_response(self, _: Arc<Tree>) -> Response<Body>

Respond to the given request body, updating the sled::Tree as necessary.

Implementors§