pub enum DecoderTrap {
Strict,
Replace,
Ignore,
Call(DecoderTrapFunc),
}
Expand description
Trap, which handles decoder errors.
Variants§
Strict
Immediately fails on errors. Corresponds to WHATWG “fatal” error algorithm.
Replace
Replaces an error with a U+FFFD (decoder). Corresponds to WHATWG “replacement” error algorithm.
Ignore
Silently 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.
Implementations§
Source§impl DecoderTrap
impl DecoderTrap
Sourcepub fn trap(
&self,
decoder: &mut dyn RawDecoder,
input: &[u8],
output: &mut dyn StringWriter,
) -> bool
pub fn trap( &self, decoder: &mut dyn RawDecoder, input: &[u8], output: &mut dyn StringWriter, ) -> bool
Handles a decoder error. May write to the output writer. Returns true only when it is fine to keep going.
Trait Implementations§
Source§impl Clone for DecoderTrap
impl Clone for DecoderTrap
Source§fn clone(&self) -> DecoderTrap
fn clone(&self) -> DecoderTrap
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for DecoderTrap
Auto Trait Implementations§
impl Freeze for DecoderTrap
impl RefUnwindSafe for DecoderTrap
impl Send for DecoderTrap
impl Sync for DecoderTrap
impl Unpin for DecoderTrap
impl UnwindSafe for DecoderTrap
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more