translate_reader

Function translate_reader 

Source
pub fn translate_reader<R, W>(
    input: R,
    from: Option<Format>,
    to: Format,
    output: W,
) -> Result<()>
where R: Read, W: Write,
Expand description

Translates the contents of a single reader to a different format.

See Translator::translate_reader.