pub trait StaticResponseExtender: RefUnwindSafe {
    type ResBody: HttpBody;

    fn extend(state: &mut State, response: &mut Response<Self::ResBody>);
}
Expand description

Extend the Response based on current State and Response data.

Required Associated Types

The type of the response body. Almost always hyper::Body.

Required Methods

Extend the response.

Implementors