pub fn decode<R: AsRef<[u8]>>(
input: R,
mode: ParseMode,
) -> Result<Vec<u8>, QuotedPrintableError>
Expand description
Decodes a piece of quoted-printable data.
This implementation is equivalent to decode_with_options
with an
Options
that uses the provided ParseMode
.