Enum encoding::types::DecoderTrap [] [src]

pub enum DecoderTrap {
    Strict,
    Replace,
    Ignore,
    Call(DecoderTrapFunc),
}

Trap, which handles decoder errors.

Variants

Immediately fails on errors. Corresponds to WHATWG "fatal" error algorithm.

Replaces an error with a U+FFFD (decoder). Corresponds to WHATWG "replacement" error algorithm.

Silently ignores an error, effectively replacing it with an empty sequence.

Calls given function to handle decoder errors. The function is given the current decoder, input and output writer, and should return true only when it is fine to keep going.

Methods

impl DecoderTrap
[src]

Handles a decoder error. May write to the output writer. Returns true only when it is fine to keep going.

Trait Implementations

impl Copy for DecoderTrap
[src]

impl Clone for DecoderTrap
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more