Enum quoted_printable::ParseMode [] [src]

pub enum ParseMode {
    Strict,
    Robust,
}

A flag that allows control over the decoding strictness.

Variants

Perform strict checking over the input, and return an error if any input appears malformed.

Perform robust parsing, and gracefully handle any malformed input. This can result in the decoded output being different than what was intended.

Trait Implementations

impl Debug for ParseMode
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ParseMode
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.