[−][src]Struct futures_lite::io::Split
Stream for the AsyncBufReadExt::split()
method.
Trait Implementations
impl<R: Debug> Debug for Split<R>
[src]
impl<R: AsyncBufRead> Stream for Split<R>
[src]
type Item = Result<Vec<u8>>
Values yielded by the stream.
fn poll_next(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Self::Item>>
[src]
fn size_hint(&self) -> (usize, Option<usize>)
[src]
impl<'__pin, R> Unpin for Split<R> where
__Origin<'__pin, R>: Unpin,
[src]
__Origin<'__pin, R>: Unpin,
Auto Trait Implementations
impl<R> RefUnwindSafe for Split<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for Split<R> where
R: Send,
R: Send,
impl<R> Sync for Split<R> where
R: Sync,
R: Sync,
impl<R> UnwindSafe for Split<R> where
R: UnwindSafe,
R: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> StreamExt for T where
T: Stream + ?Sized,
[src]
T: Stream + ?Sized,
fn next(&mut self) -> NextFuture<Self>ⓘImportant traits for NextFuture<'_, T>
impl<'_, T: Stream + Unpin + ?Sized> Future for NextFuture<'_, T> type Output = Option<T::Item>;
where
Self: Unpin,
[src]
Important traits for NextFuture<'_, T>
impl<'_, T: Stream + Unpin + ?Sized> Future for NextFuture<'_, T> type Output = Option<T::Item>;
Self: Unpin,
fn collect<C: Default + Extend<Self::Item>>(self) -> CollectFuture<Self, C>ⓘImportant traits for CollectFuture<St, C>
impl<St, C> Future for CollectFuture<St, C> where
St: Stream,
C: Default + Extend<St::Item>, type Output = C;
where
Self: Sized,
[src]
Important traits for CollectFuture<St, C>
impl<St, C> Future for CollectFuture<St, C> where
St: Stream,
C: Default + Extend<St::Item>, type Output = C;
Self: Sized,
fn try_collect<T, C: Default + Extend<T>>(self) -> TryCollectFuture<Self, C>ⓘImportant traits for TryCollectFuture<St, C>
impl<T, E, St, C> Future for TryCollectFuture<St, C> where
St: Stream<Item = Result<T, E>>,
C: Default + Extend<T>, type Output = Result<C, E>;
where
Self: Sized,
Self::Item: Result<Ok = T>,
[src]
Important traits for TryCollectFuture<St, C>
impl<T, E, St, C> Future for TryCollectFuture<St, C> where
St: Stream<Item = Result<T, E>>,
C: Default + Extend<T>, type Output = Result<C, E>;
Self: Sized,
Self::Item: Result<Ok = T>,
fn fold<B, F>(self, init: B, f: F) -> FoldFuture<Self, F, B>ⓘImportant traits for FoldFuture<S, F, B>
impl<S, F, B> Future for FoldFuture<S, F, B> where
S: Stream + Sized,
F: FnMut(B, S::Item) -> B, type Output = B;
where
Self: Sized,
F: FnMut(B, Self::Item) -> B,
[src]
Important traits for FoldFuture<S, F, B>
impl<S, F, B> Future for FoldFuture<S, F, B> where
S: Stream + Sized,
F: FnMut(B, S::Item) -> B, type Output = B;
Self: Sized,
F: FnMut(B, Self::Item) -> B,
fn try_fold<T, E, F, B>(&mut self, init: B, f: F) -> TryFoldFuture<Self, F, B>ⓘImportant traits for TryFoldFuture<'a, S, F, B>
impl<'a, T, E, S, F, B> Future for TryFoldFuture<'a, S, F, B> where
S: Stream + Unpin,
S::Item: Result<Ok = T, Err = E>,
F: FnMut(B, T) -> Result<B, E>, type Output = Result<B, E>;
where
Self: Unpin + Sized,
Self::Item: Result<Ok = T, Err = E>,
F: FnMut(B, T) -> Result<B, E>,
[src]
Important traits for TryFoldFuture<'a, S, F, B>
impl<'a, T, E, S, F, B> Future for TryFoldFuture<'a, S, F, B> where
S: Stream + Unpin,
S::Item: Result<Ok = T, Err = E>,
F: FnMut(B, T) -> Result<B, E>, type Output = Result<B, E>;
Self: Unpin + Sized,
Self::Item: Result<Ok = T, Err = E>,
F: FnMut(B, T) -> Result<B, E>,
fn boxed(self) -> Boxed<Self::Item> where
Self: Sized + Send + 'static,
[src]
Self: Sized + Send + 'static,
fn boxed_local(self) -> BoxedLocal<Self::Item> where
Self: Sized + 'static,
[src]
Self: Sized + 'static,
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<S, T, E> TryStream for S where
S: Stream<Item = Result<T, E>> + ?Sized,
[src]
S: Stream<Item = Result<T, E>> + ?Sized,