Struct futures_util::io::Lines [−][src]
#[must_use = "streams do nothing unless polled"]pub struct Lines<R> { /* fields omitted */ }
This is supported on crate feature
io only.Expand description
Stream for the lines method.
Trait Implementations
impl<R: AsyncBufRead> Stream for Lines<R>[src]
impl<R: AsyncBufRead> Stream for Lines<R>[src]impl<'__pin, R> Unpin for Lines<R> where
__Origin<'__pin, R>: Unpin, [src]
__Origin<'__pin, R>: Unpin,
Auto Trait Implementations
impl<R> RefUnwindSafe for Lines<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for Lines<R> where
R: Send,
R: Send,
impl<R> Sync for Lines<R> where
R: Sync,
R: Sync,
impl<R> UnwindSafe for Lines<R> where
R: UnwindSafe,
R: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more