pub struct CodePointOutOfRangeError;Expand description
Error returned when converting a u32 greater than U+10FFFF into a
UnicodeCodePoint.
Trait Implementations§
Source§impl Clone for CodePointOutOfRangeError
impl Clone for CodePointOutOfRangeError
Source§fn clone(&self) -> CodePointOutOfRangeError
fn clone(&self) -> CodePointOutOfRangeError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CodePointOutOfRangeError
Source§impl Debug for CodePointOutOfRangeError
impl Debug for CodePointOutOfRangeError
Source§impl Display for CodePointOutOfRangeError
impl Display for CodePointOutOfRangeError
impl Eq for CodePointOutOfRangeError
Source§impl Error for CodePointOutOfRangeError
impl Error for CodePointOutOfRangeError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for CodePointOutOfRangeError
impl PartialEq for CodePointOutOfRangeError
impl StructuralPartialEq for CodePointOutOfRangeError
Auto Trait Implementations§
impl Freeze for CodePointOutOfRangeError
impl RefUnwindSafe for CodePointOutOfRangeError
impl Send for CodePointOutOfRangeError
impl Sync for CodePointOutOfRangeError
impl Unpin for CodePointOutOfRangeError
impl UnsafeUnpin for CodePointOutOfRangeError
impl UnwindSafe for CodePointOutOfRangeError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more