Enum encode_unicode::error::InvalidCodepoint [−][src]
Reasons why an u32
is not a valid UTF codepoint.
Variants
It’s reserved for UTF-16 surrogate pairs.“
It’s higher than the highest codepoint (which is 0x10ffff).
Implementations
impl InvalidCodepoint
[src]
pub fn error_range(self) -> (u32, u32)
[src]
Get the range of values for which this error would be given.
Trait Implementations
impl Clone for InvalidCodepoint
[src]
fn clone(&self) -> InvalidCodepoint
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for InvalidCodepoint
[src]
impl Debug for InvalidCodepoint
[src]
impl Display for InvalidCodepoint
[src]
impl Eq for InvalidCodepoint
[src]
impl Error for InvalidCodepoint
[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 From<InvalidCodepoint> for InvalidUtf8Array
[src]
fn from(error: InvalidCodepoint) -> InvalidUtf8Array
[src]
impl From<InvalidCodepoint> for InvalidUtf8Slice
[src]
fn from(error: InvalidCodepoint) -> InvalidUtf8Slice
[src]
impl PartialEq<InvalidCodepoint> for InvalidCodepoint
[src]
fn eq(&self, other: &InvalidCodepoint) -> bool
[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl StructuralEq for InvalidCodepoint
[src]
impl StructuralPartialEq for InvalidCodepoint
[src]
Auto Trait Implementations
impl RefUnwindSafe for InvalidCodepoint
impl Send for InvalidCodepoint
impl Sync for InvalidCodepoint
impl Unpin for InvalidCodepoint
impl UnwindSafe for InvalidCodepoint
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>,