[−][src]Struct tower_web::util::buf_stream::Empty
A BufStream that contains no data.
Methods
impl<Item, Error> Empty<Item, Error>[src]
Trait Implementations
impl<Item, Error> BufStream for Empty<Item, Error> where
Item: Buf, [src]
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 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]
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]
Self: Sized,
T: FromBufStream,
Consumes all data from self, storing it in byte storage of type T.
impl<Item: Clone, Error: Clone> Clone for Empty<Item, Error>[src]
fn clone(&self) -> Empty<Item, Error>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<Item: Copy, Error: Copy> Copy for Empty<Item, Error>[src]
impl<Item, Error> Default for Empty<Item, Error>[src]
impl<Item: Debug, Error: Debug> Debug for Empty<Item, Error>[src]
Auto Trait Implementations
impl<Item, Error> Send for Empty<Item, Error> where
Error: Send,
Item: Send,
Error: Send,
Item: Send,
impl<Item, Error> Sync for Empty<Item, Error> where
Error: Sync,
Item: Sync,
Error: Sync,
Item: Sync,
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Same for T
type Output = T
Should always be Self