pub trait ResponseExtender<B>: RefUnwindSafe {
fn extend(&self, state: &mut State, response: &mut Response<B>);
}
Expand description
Allow complex types to extend the Response
based on current State
and Response
data.
pub trait ResponseExtender<B>: RefUnwindSafe {
fn extend(&self, state: &mut State, response: &mut Response<B>);
}
Allow complex types to extend the Response
based on current State
and Response
data.