pub trait ContextProvider {
    fn update(
        &mut self,
        req: &Box<Request>,
        resp: &mut Box<Response>
    ) -> Result<(), &'static str>; fn process(
        &self,
        req: &Box<Request>,
        resp: &mut Box<Response>
    ) -> Result<(), &'static str>; }

Required Methods§

Implementors§