pub struct CronPipe<Inner> { /* private fields */ }Expand description
A generic Pipe that wraps an inner type along with a RequestStream.
Trait Implementations§
Source§impl<T, Ctx, Inner> Backend<Request<T, Ctx>> for CronPipe<Inner>
impl<T, Ctx, Inner> Backend<Request<T, Ctx>> for CronPipe<Inner>
Source§type Stream = <Inner as Backend<Request<T, Ctx>>>::Stream
type Stream = <Inner as Backend<Request<T, Ctx>>>::Stream
The stream to be produced by the backend
Source§type Layer = <Inner as Backend<Request<T, Ctx>>>::Layer
type Layer = <Inner as Backend<Request<T, Ctx>>>::Layer
Returns the final decoration of layers
Auto Trait Implementations§
impl<Inner> Freeze for CronPipe<Inner>where
Inner: Freeze,
impl<Inner> !RefUnwindSafe for CronPipe<Inner>
impl<Inner> Send for CronPipe<Inner>where
Inner: Send,
impl<Inner> !Sync for CronPipe<Inner>
impl<Inner> Unpin for CronPipe<Inner>where
Inner: Unpin,
impl<Inner> !UnwindSafe for CronPipe<Inner>
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