pub struct MatchFirstWithHandlersMut<Handlers>(pub PhantomData<Handlers>);Tuple Fields§
§0: PhantomData<Handlers>Trait Implementations§
Source§impl<'a, Context, Code, Input, Args, Output, Remainder, Handlers> AsyncComputer<Context, Code, (&'a mut Input, Args)> for MatchFirstWithHandlersMut<Handlers>where
Input: HasExtractorMut,
DispatchMatchers<Handlers>: AsyncComputer<Context, Code, (Input::ExtractorMut<'a>, Args), Output = Result<Output, (Remainder, Args)>>,
Remainder: FinalizeExtract,
impl<'a, Context, Code, Input, Args, Output, Remainder, Handlers> AsyncComputer<Context, Code, (&'a mut Input, Args)> for MatchFirstWithHandlersMut<Handlers>where
Input: HasExtractorMut,
DispatchMatchers<Handlers>: AsyncComputer<Context, Code, (Input::ExtractorMut<'a>, Args), Output = Result<Output, (Remainder, Args)>>,
Remainder: FinalizeExtract,
type Output = Output
async fn compute_async( context: &Context, code: PhantomData<Code>, __arg2: (&'a mut Input, Args), ) -> Output
Source§impl<'a, Context, Code, Input, Args, Output, Remainder, Handlers> Computer<Context, Code, (&'a mut Input, Args)> for MatchFirstWithHandlersMut<Handlers>where
Input: HasExtractorMut,
DispatchMatchers<Handlers>: Computer<Context, Code, (Input::ExtractorMut<'a>, Args), Output = Result<Output, (Remainder, Args)>>,
Remainder: FinalizeExtract,
impl<'a, Context, Code, Input, Args, Output, Remainder, Handlers> Computer<Context, Code, (&'a mut Input, Args)> for MatchFirstWithHandlersMut<Handlers>where
Input: HasExtractorMut,
DispatchMatchers<Handlers>: Computer<Context, Code, (Input::ExtractorMut<'a>, Args), Output = Result<Output, (Remainder, Args)>>,
Remainder: FinalizeExtract,
type Output = Output
fn compute( context: &Context, code: PhantomData<Code>, (input, args): (&'a mut Input, Args), ) -> Output
impl<'a, Context, Code, Input, Args, Output, Remainder, Handlers> IsProviderFor<AsyncComputerComponent, Context, (Code, (&'a mut Input, Args))> for MatchFirstWithHandlersMut<Handlers>where
Input: HasExtractorMut,
DispatchMatchers<Handlers>: IsProviderFor<AsyncComputerComponent, Context, (Code, (Input::ExtractorMut<'a>, Args))> + AsyncComputer<Context, Code, (Input::ExtractorMut<'a>, Args), Output = Result<Output, (Remainder, Args)>>,
Remainder: FinalizeExtract,
impl<'a, Context, Code, Input, Args, Output, Remainder, Handlers> IsProviderFor<ComputerComponent, Context, (Code, (&'a mut Input, Args))> for MatchFirstWithHandlersMut<Handlers>where
Input: HasExtractorMut,
DispatchMatchers<Handlers>: IsProviderFor<ComputerComponent, Context, (Code, (Input::ExtractorMut<'a>, Args))> + Computer<Context, Code, (Input::ExtractorMut<'a>, Args), Output = Result<Output, (Remainder, Args)>>,
Remainder: FinalizeExtract,
Auto Trait Implementations§
impl<Handlers> Freeze for MatchFirstWithHandlersMut<Handlers>
impl<Handlers> RefUnwindSafe for MatchFirstWithHandlersMut<Handlers>where
Handlers: RefUnwindSafe,
impl<Handlers> Send for MatchFirstWithHandlersMut<Handlers>where
Handlers: Send,
impl<Handlers> Sync for MatchFirstWithHandlersMut<Handlers>where
Handlers: Sync,
impl<Handlers> Unpin for MatchFirstWithHandlersMut<Handlers>where
Handlers: Unpin,
impl<Handlers> UnsafeUnpin for MatchFirstWithHandlersMut<Handlers>
impl<Handlers> UnwindSafe for MatchFirstWithHandlersMut<Handlers>where
Handlers: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more