Skip to main content

make_writer

Function make_writer 

Source
pub fn make_writer<'w, W: Write + 'w>(
    format: Format,
    binary_format: BinaryFormat,
    table_style: TableStyle,
    out: W,
) -> Box<dyn RowWriter + 'w>
Expand description

Construct a RowWriter for format, writing to out. table_style is consulted only for Format::Table; other formats ignore it.