pub trait ResultsHook {
    fn get(&mut self) -> Result<Builder<'_>>;
    fn allow_cancellation(&self);
    fn tail_call(
        self: Box<Self>,
        request: Box<dyn RequestHook>
    ) -> Promise<(), Error> ; fn direct_tail_call(
        self: Box<Self>,
        request: Box<dyn RequestHook>
    ) -> (Promise<(), Error>, Box<dyn PipelineHook>); }

Required Methods§

Implementors§