pub struct Lines<I>(pub I);Expand description
Wrapper type that formats an iterator as newline-separated values. It can be combined with a
map(TsvField) on the iterator to ensure that the fields themselves do not contain
newlines.
Tuple Fields§
§0: ITrait Implementations§
Auto Trait Implementations§
impl<I> Freeze for Lines<I>where
I: Freeze,
impl<I> RefUnwindSafe for Lines<I>where
I: RefUnwindSafe,
impl<I> Send for Lines<I>where
I: Send,
impl<I> Sync for Lines<I>where
I: Sync,
impl<I> Unpin for Lines<I>where
I: Unpin,
impl<I> UnsafeUnpin for Lines<I>where
I: UnsafeUnpin,
impl<I> UnwindSafe for Lines<I>where
I: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more