pub struct Next<C>where
C: Send + 'static,{ /* private fields */ }Expand description
The continuation passed to a Middleware. Calling Next::run invokes
the remaining middleware and, finally, the terminal handler.
Implementations§
Auto Trait Implementations§
impl<C> !RefUnwindSafe for Next<C>
impl<C> !Sync for Next<C>
impl<C> !UnwindSafe for Next<C>
impl<C> Freeze for Next<C>
impl<C> Send for Next<C>
impl<C> Unpin for Next<C>
impl<C> UnsafeUnpin for Next<C>
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