[]Struct async_std::stream::SkipWhile

pub struct SkipWhile<S, P, T> { /* fields omitted */ }

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

impl<S, P> Stream for SkipWhile<S, P, S::Item> where
    S: Stream,
    P: FnMut(&S::Item) -> bool
[src]

type Item = S::Item

The type of items yielded by this stream. Read more

impl<'__pin, S, P, T> Unpin for SkipWhile<S, P, T> where
    __Origin<'__pin, S, P, T>: Unpin

impl<S: Debug, P: Debug, T: Debug> Debug for SkipWhile<S, P, T>[src]

Auto Trait Implementations

impl<S, P, T> Send for SkipWhile<S, P, T> where
    P: Send,
    S: Send,
    T: Send

impl<S, P, T> Sync for SkipWhile<S, P, T> where
    P: Sync,
    S: Sync,
    T: Sync

impl<S, P, T> UnwindSafe for SkipWhile<S, P, T> where
    P: UnwindSafe,
    S: UnwindSafe,
    T: UnwindSafe

impl<S, P, T> RefUnwindSafe for SkipWhile<S, P, T> where
    P: RefUnwindSafe,
    S: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]