[−][src]Enum encoding::types::EncoderTrap
Variants
Immediately fails on errors. Corresponds to WHATWG "fatal" error algorithm.
Replaces an error with ?
in given encoding.
Note that this fails when ?
cannot be represented in given encoding.
Corresponds to WHATWG "URL" error algorithms.
Silently ignores an error, effectively replacing it with an empty sequence.
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 "
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]
&self,
encoder: &mut dyn RawEncoder,
input: &str,
output: &mut dyn ByteWriter
) -> bool
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]
fn clone(&self) -> EncoderTrap
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[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]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,