Struct futures_util::stream::Chain
source · [−]pub struct Chain<St1, St2> { /* private fields */ }
Expand description
Stream for the chain
method.
Trait Implementations
sourceimpl<St1, St2> FusedStream for Chain<St1, St2> where
St1: Stream,
St2: FusedStream<Item = St1::Item>,
impl<St1, St2> FusedStream for Chain<St1, St2> where
St1: Stream,
St2: FusedStream<Item = St1::Item>,
sourcefn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns true
if the stream should no longer be polled.
sourceimpl<St1, St2> Stream for Chain<St1, St2> where
St1: Stream,
St2: Stream<Item = St1::Item>,
impl<St1, St2> Stream for Chain<St1, St2> where
St1: Stream,
St2: Stream<Item = St1::Item>,
impl<'__pin, St1, St2> Unpin for Chain<St1, St2> where
__Origin<'__pin, St1, St2>: Unpin,
Auto Trait Implementations
impl<St1, St2> RefUnwindSafe for Chain<St1, St2> where
St1: RefUnwindSafe,
St2: RefUnwindSafe,
impl<St1, St2> Send for Chain<St1, St2> where
St1: Send,
St2: Send,
impl<St1, St2> Sync for Chain<St1, St2> where
St1: Sync,
St2: Sync,
impl<St1, St2> UnwindSafe for Chain<St1, St2> where
St1: UnwindSafe,
St2: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more