Struct futures_util::stream::RepeatWith [−][src]
#[must_use = "streams do nothing unless polled"]pub struct RepeatWith<F> { /* fields omitted */ }
Expand description
An stream that repeats elements of type A endlessly by
applying the provided closure F: FnMut() -> A.
This struct is created by the repeat_with() function.
See its documentation for more.
Trait Implementations
impl<F: Clone> Clone for RepeatWith<F>[src]
impl<F: Clone> Clone for RepeatWith<F>[src]fn clone(&self) -> RepeatWith<F>[src]
fn clone(&self) -> RepeatWith<F>[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl<F: Debug> Debug for RepeatWith<F>[src]
impl<F: Debug> Debug for RepeatWith<F>[src]impl<A, F: FnMut() -> A> FusedStream for RepeatWith<F>[src]
impl<A, F: FnMut() -> A> FusedStream for RepeatWith<F>[src]fn is_terminated(&self) -> bool[src]
fn is_terminated(&self) -> bool[src]Returns true if the stream should no longer be polled.
impl<A, F: FnMut() -> A> Stream for RepeatWith<F>[src]
impl<A, F: FnMut() -> A> Stream for RepeatWith<F>[src]type Item = A
type Item = AValues yielded by the stream.
impl<A, F: FnMut() -> A> Unpin for RepeatWith<F>[src]
Auto Trait Implementations
impl<F> RefUnwindSafe for RepeatWith<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
impl<F> Send for RepeatWith<F> where
F: Send,
F: Send,
impl<F> Sync for RepeatWith<F> where
F: Sync,
F: Sync,
impl<F> UnwindSafe for RepeatWith<F> where
F: UnwindSafe,
F: 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
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more