pub struct FromUnicodeError<T> { /* private fields */ }Expand description
An error indicating that an invalid character was found.
Any character outside of the six-dot Unicode Braille patterns that is not an ASCII control character (ASCII values 0-31) or space is considered invalid.
Trait Implementations§
Source§impl<T: Clone> Clone for FromUnicodeError<T>
 
impl<T: Clone> Clone for FromUnicodeError<T>
Source§fn clone(&self) -> FromUnicodeError<T>
 
fn clone(&self) -> FromUnicodeError<T>
Returns a duplicate 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<T> Debug for FromUnicodeError<T>
 
impl<T> Debug for FromUnicodeError<T>
Source§impl<T> Display for FromUnicodeError<T>
 
impl<T> Display for FromUnicodeError<T>
Source§impl<T> Error for FromUnicodeError<T>
 
impl<T> Error for FromUnicodeError<T>
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<T: PartialEq> PartialEq for FromUnicodeError<T>
 
impl<T: PartialEq> PartialEq for FromUnicodeError<T>
impl<T: Copy> Copy for FromUnicodeError<T>
impl<T: Eq> Eq for FromUnicodeError<T>
impl<T> StructuralPartialEq for FromUnicodeError<T>
Auto Trait Implementations§
impl<T> Freeze for FromUnicodeError<T>where
    T: Freeze,
impl<T> RefUnwindSafe for FromUnicodeError<T>where
    T: RefUnwindSafe,
impl<T> Send for FromUnicodeError<T>where
    T: Send,
impl<T> Sync for FromUnicodeError<T>where
    T: Sync,
impl<T> Unpin for FromUnicodeError<T>where
    T: Unpin,
impl<T> UnwindSafe for FromUnicodeError<T>where
    T: UnwindSafe,
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