Enum encode_unicode::error::InvalidUtf16Array[][src]

pub enum InvalidUtf16Array {
    FirstIsTrailingSurrogate,
    SecondIsNotTrailingSurrogate,
}

Reasons why a [u16; 2] doesn’t form a valid UTF-16 codepoint.

Variants

FirstIsTrailingSurrogate

The first unit is a trailing/low surrogate, which is never valid.

SecondIsNotTrailingSurrogate

The second unit is needed, but is not a trailing surrogate.

Trait Implementations

impl Clone for InvalidUtf16Array[src]

impl Copy for InvalidUtf16Array[src]

impl Debug for InvalidUtf16Array[src]

impl Display for InvalidUtf16Array[src]

impl Eq for InvalidUtf16Array[src]

impl Error for InvalidUtf16Array[src]

impl PartialEq<InvalidUtf16Array> for InvalidUtf16Array[src]

impl StructuralEq for InvalidUtf16Array[src]

impl StructuralPartialEq for InvalidUtf16Array[src]

Auto Trait Implementations

impl RefUnwindSafe for InvalidUtf16Array

impl Send for InvalidUtf16Array

impl Sync for InvalidUtf16Array

impl Unpin for InvalidUtf16Array

impl UnwindSafe for InvalidUtf16Array

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.