Struct gloo_timers::future::IntervalStream
source · pub struct IntervalStream { /* private fields */ }
Expand description
A scheduled interval as a Stream
.
See IntervalStream::new
for scheduling new intervals.
Once scheduled, if you want to stop the interval from continuing to fire,
you can drop
the stream.
An interval stream will never resolve to Err
.
Implementations§
source§impl IntervalStream
impl IntervalStream
sourcepub fn new(millis: u32) -> IntervalStream
pub fn new(millis: u32) -> IntervalStream
Create a new interval stream.
Remember that streams do nothing unless polled or spawned, so either
spawn this stream via wasm_bindgen_futures::spawn_local
or use it inside
another stream or future.
Example
ⓘ
use futures_util::stream::StreamExt;
use gloo_timers::future::IntervalStream;
use wasm_bindgen_futures::spawn_local;
spawn_local(async {
IntervalStream::new(1_000).for_each(|_| {
// Do stuff every one second...
}).await;
});
Trait Implementations§
source§impl Debug for IntervalStream
impl Debug for IntervalStream
source§impl Stream for IntervalStream
impl Stream for IntervalStream
Auto Trait Implementations§
impl !RefUnwindSafe for IntervalStream
impl !Send for IntervalStream
impl !Sync for IntervalStream
impl Unpin for IntervalStream
impl !UnwindSafe for IntervalStream
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more