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

impl Debug for ParseMode
[src]

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

Formats the value using the given formatter.

impl PartialEq for ParseMode
[src]

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

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

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

This method tests for !=.