[][src]Struct async_std::io::Split

pub struct Split<R> { /* fields omitted */ }

A stream over the contents of an instance of BufRead split on a particular byte.

This stream is created by the split method on types that implement BufRead.

This type is an async version of std::io::Split.

Trait Implementations

impl<R: Debug> Debug for Split<R>[src]

impl<R: BufRead> Stream for Split<R>[src]

type Item = Result<Vec<u8>>

The type of items yielded by this stream.

impl<'__pin, R> Unpin for Split<R> where
    __Origin<'__pin, R>: Unpin
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for Split<R> where
    R: RefUnwindSafe

impl<R> Send for Split<R> where
    R: Send

impl<R> Sync for Split<R> where
    R: Sync

impl<R> UnwindSafe for Split<R> where
    R: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.