Struct async_std::io::Split [−][src]
pub struct Split<R> { /* fields omitted */ }Expand description
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
Attempt to pull out the next value 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