Struct tower_web::util::buf_stream::Empty [−][src]
pub struct Empty<Item, Error>(_);
A BufStream that contains no data.
Methods
impl<Item, Error> Empty<Item, Error>[src]
impl<Item, Error> Empty<Item, Error>Trait Implementations
impl<Item: Debug, Error: Debug> Debug for Empty<Item, Error>[src]
impl<Item: Debug, Error: Debug> Debug for Empty<Item, Error>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<Item: Copy, Error: Copy> Copy for Empty<Item, Error>[src]
impl<Item: Copy, Error: Copy> Copy for Empty<Item, Error>impl<Item: Clone, Error: Clone> Clone for Empty<Item, Error>[src]
impl<Item: Clone, Error: Clone> Clone for Empty<Item, Error>fn clone(&self) -> Empty<Item, Error>[src]
fn clone(&self) -> Empty<Item, Error>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl<Item, Error> Default for Empty<Item, Error>[src]
impl<Item, Error> Default for Empty<Item, Error>impl<Item, Error> BufStream for Empty<Item, Error> where
Item: Buf, [src]
impl<Item, Error> BufStream for Empty<Item, Error> where
Item: Buf, type Item = Item
Values yielded by the BufStream.
type Error = Error
The error type this BufStream might generate.
fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>[src]
fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error>Attempt to pull out the next buffer 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
fn size_hint(&self) -> SizeHint[src]
fn size_hint(&self) -> SizeHintReturns 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]
fn chain<T>(self, other: T) -> Chain<Self, T> where
Self: Sized,
T: BufStream<Error = Self::Error>, 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]
fn collect<T>(self) -> Collect<Self, T> where
Self: Sized,
T: FromBufStream, Consumes all data from self, storing it in byte storage of type T.