Struct Chain
struct Chain<St1, St2> { ... }
Stream for the chain method.
Implementations
impl<'__pin, St1, St2> Unpin for Chain<St1, St2>
impl<S> TryStreamExt for Chain<St1, St2>
impl<S, T, E> TryStream for Chain<St1, St2>
fn try_poll_next(self: Pin<&mut S>, cx: &mut Context<'_>) -> Poll<Option<Result<<S as TryStream>::Ok, <S as TryStream>::Error>>>
impl<St1, St2> Freeze for Chain<St1, St2>
impl<St1, St2> FusedStream for Chain<St1, St2>
fn is_terminated(self: &Self) -> bool
impl<St1, St2> RefUnwindSafe for Chain<St1, St2>
impl<St1, St2> Send for Chain<St1, St2>
impl<St1, St2> Stream for Chain<St1, St2>
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<<Self as >::Item>>fn size_hint(self: &Self) -> (usize, Option<usize>)
impl<St1, St2> Sync for Chain<St1, St2>
impl<St1, St2> UnsafeUnpin for Chain<St1, St2>
impl<St1, St2> UnwindSafe for Chain<St1, St2>
impl<St1: $crate::fmt::Debug, St2: $crate::fmt::Debug> Debug for Chain<St1, St2>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<T> Any for Chain<St1, St2>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Chain<St1, St2>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Chain<St1, St2>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for Chain<St1, St2>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> StreamExt for Chain<St1, St2>
impl<T, U> Into for Chain<St1, St2>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Chain<St1, St2>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Chain<St1, St2>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>