Trait gotham::router::response::ResponseExtender[][src]

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.

Required methods

Extend the Response

Implementors