Crate quoted_printable

Source

Structs§

Options
Options to control encoding and decoding behaviour.

Enums§

InputMode
A flag that controls how to treat the input when encoding.
ParseMode
A flag that allows control over the decoding strictness.
QuotedPrintableError
An error type that represents different kinds of decoding errors.

Functions§

decode
Decodes a piece of quoted-printable data. This implementation is equivalent to decode_with_options with an Options that uses the provided ParseMode.
decode_with_options
Decodes a piece of quoted-printable data.
encode
Encodes some bytes into quoted-printable format, treating the input as text.
encode_binary
Encodes some bytes into quoted-printable format, treating the input as binary.
encode_binary_to_str
Encodes some bytes into quoted-printable format.
encode_to_str
Encodes some bytes into quoted-printable format.
encode_with_options
Encodes some bytes into quoted-printable format, using the provided options.