Enum encoding::types::DecoderTrap [−][src]
pub enum DecoderTrap {
Strict,
Replace,
Ignore,
Call(DecoderTrapFunc),
}Trap, which handles decoder errors.
Variants
StrictImmediately fails on errors. Corresponds to WHATWG "fatal" error algorithm.
ReplaceReplaces an error with a U+FFFD (decoder). Corresponds to WHATWG "replacement" error algorithm.
IgnoreSilently ignores an error, effectively replacing it with an empty sequence.
Call(DecoderTrapFunc)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]
impl DecoderTrappub fn trap(
&self,
decoder: &mut RawDecoder,
input: &[u8],
output: &mut StringWriter
) -> bool[src]
pub fn trap(
&self,
decoder: &mut RawDecoder,
input: &[u8],
output: &mut StringWriter
) -> boolHandles 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 Copy for DecoderTrapimpl Clone for DecoderTrap[src]
impl Clone for DecoderTrapfn clone(&self) -> DecoderTrap[src]
fn clone(&self) -> DecoderTrapReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for DecoderTrap
impl Send for DecoderTrapimpl Sync for DecoderTrap
impl Sync for DecoderTrap