pub struct PropagateBaseStreamError<St>(PhantomData<St>);
Expand description
Immediately propagates errors occurred in the base stream.
Tuple Fields§
§0: PhantomData<St>
Trait Implementations§
source§impl<St: Clone> Clone for PropagateBaseStreamError<St>
impl<St: Clone> Clone for PropagateBaseStreamError<St>
source§fn clone(&self) -> PropagateBaseStreamError<St>
fn clone(&self) -> PropagateBaseStreamError<St>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<St: Debug> Debug for PropagateBaseStreamError<St>
impl<St: Debug> Debug for PropagateBaseStreamError<St>
source§impl<St> FlowController<<NestedTryStreamIntoEitherTryStream<St> as Stream>::Item, <<NestedTryStreamIntoEitherTryStream<St> as Stream>::Item as Stream>::Item> for PropagateBaseStreamError<St>
impl<St> FlowController<<NestedTryStreamIntoEitherTryStream<St> as Stream>::Item, <<NestedTryStreamIntoEitherTryStream<St> as Stream>::Item as Stream>::Item> for PropagateBaseStreamError<St>
source§fn next_step(
item: <NestedTryStreamIntoEitherTryStream<St> as Stream>::Item,
) -> FlowStep<<NestedTryStreamIntoEitherTryStream<St> as Stream>::Item, <<NestedTryStreamIntoEitherTryStream<St> as Stream>::Item as Stream>::Item>
fn next_step( item: <NestedTryStreamIntoEitherTryStream<St> as Stream>::Item, ) -> FlowStep<<NestedTryStreamIntoEitherTryStream<St> as Stream>::Item, <<NestedTryStreamIntoEitherTryStream<St> as Stream>::Item as Stream>::Item>
Handles an item producing
FlowStep
describing the next flow step.impl<St: Copy> Copy for PropagateBaseStreamError<St>
Auto Trait Implementations§
impl<St> Freeze for PropagateBaseStreamError<St>
impl<St> RefUnwindSafe for PropagateBaseStreamError<St>where
St: RefUnwindSafe,
impl<St> Send for PropagateBaseStreamError<St>where
St: Send,
impl<St> Sync for PropagateBaseStreamError<St>where
St: Sync,
impl<St> Unpin for PropagateBaseStreamError<St>where
St: Unpin,
impl<St> UnwindSafe for PropagateBaseStreamError<St>where
St: 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