Struct async_std::stream::RepeatWith [−][src]
pub struct RepeatWith<F> { /* fields omitted */ }Expand description
A stream that repeats elements of type T endlessly by applying a provided closure.
This stream is created by the repeat_with function. See its
documentation for more.
Trait Implementations
Auto Trait Implementations
impl<F> RefUnwindSafe for RepeatWith<F> where
F: RefUnwindSafe,
impl<F> Send for RepeatWith<F> where
F: Send,
impl<F> Sync for RepeatWith<F> where
F: Sync,
impl<F> UnwindSafe for RepeatWith<F> where
F: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more