[−][src]Struct tokio_buf::util::Limit
Limits the stream to a maximum amount of data.
Trait Implementations
impl<T> BufStream for Limit<T> where
T: BufStream,
[src]
T: BufStream,
type Item = T::Item
Values yielded by the BufStream
. Read more
type Error = LimitError<T::Error>
The error type this BufStream
might generate.
fn poll_buf(&mut self) -> Poll<Option<Self::Item>, Self::Error>
[src]
fn size_hint(&self) -> SizeHint
[src]
impl<T: Debug> Debug for Limit<T>
[src]
Auto Trait Implementations
impl<T> Send for Limit<T> where
T: Send,
T: Send,
impl<T> Unpin for Limit<T> where
T: Unpin,
T: Unpin,
impl<T> Sync for Limit<T> where
T: Sync,
T: Sync,
impl<T> UnwindSafe for Limit<T> where
T: UnwindSafe,
T: UnwindSafe,
impl<T> RefUnwindSafe for Limit<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T> BufStreamExt for T where
T: BufStream,
[src]
T: BufStream,
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>,
fn collect<T>(self) -> Collect<Self, T> where
Self: Sized,
T: FromBufStream<Self::Item>,
[src]
Self: Sized,
T: FromBufStream<Self::Item>,
fn limit(self, amount: u64) -> Limit<Self> where
Self: Sized,
[src]
Self: Sized,
fn into_stream(self) -> IntoStream<Self> where
Self: Sized,
[src]
Self: Sized,
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
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, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,