[][src]Enum encoding::types::EncoderTrap

pub enum EncoderTrap {
    Strict,
    Replace,
    Ignore,
    NcrEscape,
    Call(EncoderTrapFunc),
}

Variants

Strict

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

Replace

Replaces an error with ? in given encoding. Note that this fails when ? cannot be represented in given encoding. Corresponds to WHATWG "URL" error algorithms.

Ignore

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

NcrEscape

Replaces an error with XML numeric character references (e.g. Ӓ). The encoder trap fails when NCRs cannot be represented in given encoding. Corresponds to WHATWG "

" error algorithms.

Call(EncoderTrapFunc)

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

Methods

impl EncoderTrap[src]

pub fn trap(
    &self,
    encoder: &mut dyn RawEncoder,
    input: &str,
    output: &mut dyn ByteWriter
) -> bool
[src]

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

Trait Implementations

impl Clone for EncoderTrap[src]

impl Copy for EncoderTrap[src]

Auto Trait Implementations

impl Send for EncoderTrap

impl Sync for EncoderTrap

impl Unpin for EncoderTrap

impl UnwindSafe for EncoderTrap

impl RefUnwindSafe for EncoderTrap

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]