Struct cesu8::DecodingError[][src]

pub struct DecodingError;

The error type which is returned from decoding CESU-8 data to UTF-8.

This type does not support transmission of an error other than that an error occurred. This is desired, as CESU-8 should only be used for internal use, any error should signify an issue with a developer’s code or some attacker is trying to improperly encode data to evade security checks.

let bytes: &[u8] = &[];
if let Err(cesu8::DecodingError) = cesu8::decode(bytes) {
    panic!("An error occurred");
}

Trait Implementations

impl Debug for DecodingError[src]

impl Display for DecodingError[src]

impl Error for DecodingError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.