trait ExtraInner: Send + Sync {
    // Required methods
    fn clone_box(&self) -> Box<dyn ExtraInner>;
    fn set(&self, res: &mut Extensions);
}

Required Methods§

source

fn clone_box(&self) -> Box<dyn ExtraInner>

source

fn set(&self, res: &mut Extensions)

Implementors§

source§

impl<T> ExtraInner for ExtraChain<T>where T: Clone + Send + Sync + 'static,

source§

impl<T> ExtraInner for ExtraEnvelope<T>where T: Clone + Send + Sync + 'static,