Struct Cycle

struct Cycle<St> { ... }

Stream for the cycle method.

Implementations

impl<'__pin, St> Unpin for Cycle<St>

impl<S> TryStreamExt for Cycle<St>

impl<S, T, E> TryStream for Cycle<St>

fn try_poll_next(self: Pin<&mut S>, cx: &mut Context<'_>) -> Poll<Option<Result<<S as TryStream>::Ok, <S as TryStream>::Error>>>

impl<St> Freeze for Cycle<St>

impl<St> FusedStream for Cycle<St>

fn is_terminated(self: &Self) -> bool

impl<St> RefUnwindSafe for Cycle<St>

impl<St> Send for Cycle<St>

impl<St> Stream for Cycle<St>

fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<<Self as >::Item>>
fn size_hint(self: &Self) -> (usize, Option<usize>)

impl<St> Sync for Cycle<St>

impl<St> UnsafeUnpin for Cycle<St>

impl<St> UnwindSafe for Cycle<St>

impl<St: $crate::fmt::Debug> Debug for Cycle<St>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<T> Any for Cycle<St>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Cycle<St>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for Cycle<St>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> From for Cycle<St>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> StreamExt for Cycle<St>

impl<T, U> Into for Cycle<St>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for Cycle<St>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for Cycle<St>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>