pub trait StaticResponseExtender: RefUnwindSafe {
    type ResBody: Payload;

    fn extend(_: &mut State, _: &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§