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.

Trait Implementations

Derived Implementations

impl Debug for ParseMode

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl PartialEq for ParseMode

fn eq(&self, __arg_0: &ParseMode) -> bool

1.0.0fn ne(&self, other: &Rhs) -> bool