pub struct Request<T>(pub T);Expand description
Inbound message flowing through a pipeline.
Tuple Fields§
§0: TImplementations§
Trait Implementations§
Source§impl<NewReq, Resp> Merge<Resp> for Request<NewReq>
impl<NewReq, Resp> Merge<Resp> for Request<NewReq>
Source§fn into_continue(self) -> Self::Merged
fn into_continue(self) -> Self::Merged
Called when the previous
Branch was Continue.Auto Trait Implementations§
impl<T> Freeze for Request<T>where
T: Freeze,
impl<T> RefUnwindSafe for Request<T>where
T: RefUnwindSafe,
impl<T> Send for Request<T>where
T: Send,
impl<T> Sync for Request<T>where
T: Sync,
impl<T> Unpin for Request<T>where
T: Unpin,
impl<T> UnsafeUnpin for Request<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Request<T>where
T: 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