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.
pub trait StaticResponseExtender: RefUnwindSafe {
type ResBody: HttpBody;
fn extend(state: &mut State, response: &mut Response<Self::ResBody>);
}
Extend the Response
based on current State
and Response
data.