[][src]Struct tower_web::util::buf_stream::StdStream

pub struct StdStream<T>(_);

Wraps a futures::Stream that yields Buf values and provides a BufStream implementation.

Methods

impl<T> StdStream<T>[src]

pub fn new(stream: T) -> StdStream<T>[src]

Create a new StdStream containing stream.

Trait Implementations

impl<T> BufStream for StdStream<T> where
    T: Stream,
    T::Item: Buf
[src]

type Item = T::Item

Values yielded by the BufStream.

type Error = T::Error

The error type this BufStream might generate.

fn size_hint(&self) -> SizeHint[src]

Returns the bounds on the remaining length of the iterator. Read more

fn chain<T>(self, other: T) -> Chain<Self, T> where
    Self: Sized,
    T: BufStream<Error = Self::Error>, 
[src]

Takes two buf streams and creates a new buf stream over both in sequence. Read more

fn collect<T>(self) -> Collect<Self, T> where
    Self: Sized,
    T: FromBufStream
[src]

Consumes all data from self, storing it in byte storage of type T.

impl<T: Debug> Debug for StdStream<T>[src]

Auto Trait Implementations

impl<T> Send for StdStream<T> where
    T: Send

impl<T> Sync for StdStream<T> where
    T: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Same for T

type Output = T

Should always be Self

impl<T> Erased for T