pub fn encode_stream(
reader: &mut impl Read,
wrap_col: usize,
writer: &mut impl Write,
) -> Result<()>Expand description
Stream-encode from a reader to a writer. Used for stdin processing. Dispatches to specialized paths for wrap_col=0 (no wrap) and wrap_col>0 (wrapping).