Enum encode_unicode::error::InvalidUtf16Tuple [−][src]
Reasons why one or two u16
s are not valid UTF-16, in sinking precedence.
Variants
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.
You provided a second unit, but the first one stands on its own.
The first and only unit requires a second unit.
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]
fn clone(&self) -> InvalidUtf16Tuple
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[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]
fn description(&self) -> &'static str
[src]
pub fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0[src]
pub fn backtrace(&self) -> Option<&Backtrace>
[src]
pub fn cause(&self) -> Option<&dyn Error>
1.0.0[src]
impl PartialEq<InvalidUtf16Tuple> for InvalidUtf16Tuple
[src]
fn eq(&self, other: &InvalidUtf16Tuple) -> bool
[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool
1.0.0[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
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.
pub 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>,