[]Struct async_std::io::Lines

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

A stream of lines in a byte stream.

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

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

Trait Implementations

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

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

type Item = Result<String>

The type of items yielded by this stream. Read more

impl<'__pin, R> Unpin for Lines<R> where
    __Origin<'__pin, R>: Unpin

Auto Trait Implementations

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

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

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

impl<R> UnwindSafe for Lines<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.