pub struct DispatcherImpl<H, C, P> where
H: NewHandler,
C: PipelineHandleChain<P>,
P: RefUnwindSafe, { /* private fields */ }
Expand description
Default implementation of the Dispatcher
trait.
Implementations
sourceimpl<H, C, P> DispatcherImpl<H, C, P> where
H: NewHandler,
H::Instance: 'static,
C: PipelineHandleChain<P>,
P: RefUnwindSafe,
impl<H, C, P> DispatcherImpl<H, C, P> where
H: NewHandler,
H::Instance: 'static,
C: PipelineHandleChain<P>,
P: RefUnwindSafe,
sourcepub fn new(new_handler: H, pipeline_chain: C, pipelines: PipelineSet<P>) -> Self
pub fn new(new_handler: H, pipeline_chain: C, pipelines: PipelineSet<P>) -> Self
Creates a new DispatcherImpl
.
new_handler
- TheHandler
that will be called once thepipeline_chain
is complete.pipeline_chain
- A chain ofPipeline
instance handles that indicate whichPipelines
will be invoked.pipelines
- AllPipeline
instances, accessible by the handles provided inpipeline_chain
.
Trait Implementations
sourceimpl<H, C, P> Dispatcher for DispatcherImpl<H, C, P> where
H: NewHandler,
H::Instance: Send + 'static,
C: PipelineHandleChain<P>,
P: RefUnwindSafe,
impl<H, C, P> Dispatcher for DispatcherImpl<H, C, P> where
H: NewHandler,
H::Instance: Send + 'static,
C: PipelineHandleChain<P>,
P: RefUnwindSafe,
Auto Trait Implementations
impl<H, C, P> RefUnwindSafe for DispatcherImpl<H, C, P>
impl<H, C, P> Send for DispatcherImpl<H, C, P> where
C: Send,
P: Send + Sync,
impl<H, C, P> Sync for DispatcherImpl<H, C, P> where
C: Sync,
P: Send + Sync,
impl<H, C, P> Unpin for DispatcherImpl<H, C, P> where
C: Unpin,
H: Unpin,
impl<H, C, P> UnwindSafe for DispatcherImpl<H, C, P> where
C: UnwindSafe,
H: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more