Enum encode_unicode::error::InvalidUtf16Tuple[][src]

pub enum InvalidUtf16Tuple {
    FirstIsTrailingSurrogate,
    SuperfluousSecond,
    MissingSecond,
    InvalidSecond,
}

Reasons why one or two u16s are not valid UTF-16, in sinking precedence.

Variants

FirstIsTrailingSurrogate

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

Note that the value of a low surrogate is actually higher than a high surrogate.

SuperfluousSecond

You provided a second unit, but the first one stands on its own.

MissingSecond

The first and only unit requires a second unit.

InvalidSecond

The first unit requires a second unit, but it’s not a trailing/low surrogate.

Note that the value of a low surrogate is actually higher than a high surrogate.

Trait Implementations

impl Clone for InvalidUtf16Tuple[src]

impl Copy for InvalidUtf16Tuple[src]

impl Debug for InvalidUtf16Tuple[src]

impl Display for InvalidUtf16Tuple[src]

impl Eq for InvalidUtf16Tuple[src]

impl Error for InvalidUtf16Tuple[src]

impl PartialEq<InvalidUtf16Tuple> for InvalidUtf16Tuple[src]

impl StructuralEq for InvalidUtf16Tuple[src]

impl StructuralPartialEq for InvalidUtf16Tuple[src]

Auto Trait Implementations

impl RefUnwindSafe for InvalidUtf16Tuple

impl Send for InvalidUtf16Tuple

impl Sync for InvalidUtf16Tuple

impl Unpin for InvalidUtf16Tuple

impl UnwindSafe for InvalidUtf16Tuple

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.