pub struct FromUtf32Error();
Expand description
A possible error value when converting a String from a UTF-32 byte slice.
This type is the error type for the to_string
method on U32Str
.
Trait Implementations§
Source§impl Clone for FromUtf32Error
impl Clone for FromUtf32Error
Source§fn clone(&self) -> FromUtf32Error
fn clone(&self) -> FromUtf32Error
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FromUtf32Error
impl Debug for FromUtf32Error
Source§impl Display for FromUtf32Error
impl Display for FromUtf32Error
Source§impl Error for FromUtf32Error
impl Error for FromUtf32Error
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Source§impl PartialEq for FromUtf32Error
impl PartialEq for FromUtf32Error
impl Copy for FromUtf32Error
impl Eq for FromUtf32Error
impl StructuralPartialEq for FromUtf32Error
Auto Trait Implementations§
impl Freeze for FromUtf32Error
impl RefUnwindSafe for FromUtf32Error
impl Send for FromUtf32Error
impl Sync for FromUtf32Error
impl Unpin for FromUtf32Error
impl UnwindSafe for FromUtf32Error
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