[][src]Struct tokio::prelude::stream::Peekable

#[must_use = "streams do nothing unless polled"]
pub struct Peekable<S> where
    S: Stream
{ /* fields omitted */ }

A Stream that implements a peek method.

The peek method can be used to retrieve a reference to the next Stream::Item if available. A subsequent call to poll will return the owned item.

Methods

impl<S> Peekable<S> where
    S: Stream
[src]

pub fn peek(
    &mut self
) -> Result<Async<Option<&<S as Stream>::Item>>, <S as Stream>::Error>
[src]

Peek retrieves a reference to the next item in the stream.

This method polls the underlying stream and return either a reference to the next item if the stream is ready or passes through any errors.

Trait Implementations

impl<S> Debug for Peekable<S> where
    S: Stream + Debug,
    <S as Stream>::Item: Debug
[src]

impl<S> Sink for Peekable<S> where
    S: Sink + Stream
[src]

type SinkItem = <S as Sink>::SinkItem

The type of value that the sink accepts.

type SinkError = <S as Sink>::SinkError

The type of value produced by the sink when an error occurs.

impl<S> Stream for Peekable<S> where
    S: Stream
[src]

type Item = <S as Stream>::Item

The type of item this stream will yield on success.

type Error = <S as Stream>::Error

The type of error this stream may generate.

Auto Trait Implementations

impl<S> RefUnwindSafe for Peekable<S> where
    S: RefUnwindSafe,
    <S as Stream>::Item: RefUnwindSafe

impl<S> Send for Peekable<S> where
    S: Send,
    <S as Stream>::Item: Send

impl<S> Sync for Peekable<S> where
    S: Sync,
    <S as Stream>::Item: Sync

impl<S> Unpin for Peekable<S> where
    S: Unpin,
    <S as Stream>::Item: Unpin

impl<S> UnwindSafe for Peekable<S> where
    S: UnwindSafe,
    <S as Stream>::Item: UnwindSafe

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.