Enum quoted_printable::ParseMode
[−]
[src]
pub enum ParseMode {
Strict,
Robust,
}A flag that allows control over the decoding strictness.
Variants
Strict | Perform strict checking over the input, and return an error if any input appears malformed. | |
Robust | Perform robust parsing, and gracefully handle any malformed input. This can result in the decoded output being different than what was intended. |