Struct async_std::stream::SkipWhile [−][src]
pub struct SkipWhile<S, P> { /* fields omitted */ }Expand description
A stream to skip elements of another stream based on a predicate.
This struct is created by the skip_while method on Stream. See its
documentation for more.
Trait Implementations
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