[][src]Trait lines_writer::LinesWriter

pub trait LinesWriter {
    fn write_lines<I>(&mut self, iterator: I) -> Result<usize>
    where
        I: IntoIterator,
        I::Item: Display
; }

This trait lets you write an iterator into its implementor with each item on a line.

Required methods

fn write_lines<I>(&mut self, iterator: I) -> Result<usize> where
    I: IntoIterator,
    I::Item: Display

write the items of the iterator onto self

Loading content...

Implementors

impl<T> LinesWriter for T where
    T: Write
[src]

Loading content...