Module futures_util::stream::repeat_with
source · Structs§
- An stream that repeats elements of type
A
endlessly by applying the provided closureF: FnMut() -> A
.
Functions§
- Creates a new stream that repeats elements of type
A
endlessly by applying the provided closure, the repeater,F: FnMut() -> A
.