Struct futures_util::stream::Cycle [−][src]
#[must_use = "streams do nothing unless polled"]pub struct Cycle<St> { /* fields omitted */ }
Expand description
Stream for the cycle method.
Trait Implementations
impl<St> FusedStream for Cycle<St> where
St: Clone + Stream, [src]
impl<St> FusedStream for Cycle<St> where
St: Clone + Stream, [src]fn is_terminated(&self) -> bool[src]
fn is_terminated(&self) -> bool[src]Returns true if the stream should no longer be polled.
impl<St> Stream for Cycle<St> where
St: Clone + Stream, [src]
impl<St> Stream for Cycle<St> where
St: Clone + Stream, [src]impl<'__pin, St> Unpin for Cycle<St> where
__Origin<'__pin, St>: Unpin, [src]
__Origin<'__pin, St>: Unpin,
Auto Trait Implementations
impl<St> RefUnwindSafe for Cycle<St> where
St: RefUnwindSafe,
St: RefUnwindSafe,
impl<St> Send for Cycle<St> where
St: Send,
St: Send,
impl<St> Sync for Cycle<St> where
St: Sync,
St: Sync,
impl<St> UnwindSafe for Cycle<St> where
St: UnwindSafe,
St: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more