Struct futures_util::stream::SkipWhile [−][src]
#[must_use = "streams do nothing unless polled"]pub struct SkipWhile<St, Fut, F> where
St: Stream, { /* fields omitted */ }
A stream combinator which skips elements of a stream while a predicate holds.
This structure is produced by the Stream::skip_while
method.
Methods
impl<St, Fut, F> SkipWhile<St, Fut, F> where
St: Stream,
F: FnMut(&St::Item) -> Fut,
Fut: Future<Output = bool>,
[src]
impl<St, Fut, F> SkipWhile<St, Fut, F> where
St: Stream,
F: FnMut(&St::Item) -> Fut,
Fut: Future<Output = bool>,
ⓘImportant traits for &'a mut Wpub fn get_ref(&self) -> &St
[src]
pub fn get_ref(&self) -> &St
Acquires a reference to the underlying stream that this combinator is pulling from.
ⓘImportant traits for &'a mut Wpub fn get_mut(&mut self) -> &mut St
[src]
pub fn get_mut(&mut self) -> &mut St
Acquires a mutable reference to the underlying stream that this combinator is pulling from.
Note that care must be taken to avoid tampering with the state of the stream which may otherwise confuse this combinator.
pub fn into_inner(self) -> St
[src]
pub fn into_inner(self) -> St
Consumes this combinator, returning the underlying stream.
Note that this may discard intermediate state of this combinator, so care should be taken to avoid losing resources when this is called.
Trait Implementations
impl<St: Debug, Fut: Debug, F: Debug> Debug for SkipWhile<St, Fut, F> where
St: Stream,
St::Item: Debug,
[src]
impl<St: Debug, Fut: Debug, F: Debug> Debug for SkipWhile<St, Fut, F> where
St: Stream,
St::Item: Debug,
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<St: Unpin + Stream, Fut: Unpin, F> Unpin for SkipWhile<St, Fut, F>
[src]
impl<St: Unpin + Stream, Fut: Unpin, F> Unpin for SkipWhile<St, Fut, F>
impl<St, Fut, F> Stream for SkipWhile<St, Fut, F> where
St: Stream,
F: FnMut(&St::Item) -> Fut,
Fut: Future<Output = bool>,
[src]
impl<St, Fut, F> Stream for SkipWhile<St, Fut, F> where
St: Stream,
F: FnMut(&St::Item) -> Fut,
Fut: Future<Output = bool>,
type Item = St::Item
Values yielded by the stream.
fn poll_next(self: PinMut<Self>, cx: &mut Context) -> Poll<Option<St::Item>>
[src]
fn poll_next(self: PinMut<Self>, cx: &mut Context) -> Poll<Option<St::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