Struct futures::stream::Repeat [−][src]
#[must_use = "streams do nothing unless polled"]pub struct Repeat<T> { /* fields omitted */ }
Stream that produces the same element repeatedly.
This structure is created by the stream::repeat
function.
Trait Implementations
impl<T> Unpin for Repeat<T>
[src]
impl<T> Unpin for Repeat<T>
impl<T> Debug for Repeat<T> where
T: Debug,
[src]
impl<T> Debug for Repeat<T> where
T: Debug,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl<T> Stream for Repeat<T> where
T: Clone,
[src]
impl<T> Stream for Repeat<T> where
T: Clone,
type Item = T
Values yielded by the stream.
fn poll_next(
self: PinMut<Repeat<T>>,
&mut Context
) -> Poll<Option<<Repeat<T> as Stream>::Item>>
[src]
fn poll_next(
self: PinMut<Repeat<T>>,
&mut Context
) -> Poll<Option<<Repeat<T> as Stream>::Item>>
Attempt to pull out the next value of this stream, registering the current task for wakeup if the value is not yet available, and returning None
if the stream is exhausted. Read more