Struct IntoStream
struct IntoStream<F> { ... }
Stream for the into_stream method.
Implementations
impl<'__pin, F> Unpin for IntoStream<F>
impl<F> Debug for IntoStream<F>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<F> Freeze for IntoStream<F>
impl<F> FusedStream for IntoStream<F>
fn is_terminated(self: &Self) -> bool
impl<F> RefUnwindSafe for IntoStream<F>
impl<F> Send for IntoStream<F>
impl<F> Stream for IntoStream<F>
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<<Self as >::Item>>fn size_hint(self: &Self) -> (usize, Option<usize>)
impl<F> Sync for IntoStream<F>
impl<F> UnsafeUnpin for IntoStream<F>
impl<F> UnwindSafe for IntoStream<F>
impl<S> TryStreamExt for IntoStream<F>
impl<S, T, E> TryStream for IntoStream<F>
fn try_poll_next(self: Pin<&mut S>, cx: &mut Context<'_>) -> Poll<Option<Result<<S as TryStream>::Ok, <S as TryStream>::Error>>>
impl<T> Any for IntoStream<F>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for IntoStream<F>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for IntoStream<F>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for IntoStream<F>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> StreamExt for IntoStream<F>
impl<T, U> Into for IntoStream<F>
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 IntoStream<F>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for IntoStream<F>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>