pub struct TryFromCharError(/* private fields */);
Expand description
The error type returned when a checked char conversion fails.
Trait Implementationsยง
1.59.0 ยท Sourceยงimpl Clone for TryFromCharError
impl Clone for TryFromCharError
Sourceยงfn clone(&self) -> TryFromCharError
fn clone(&self) -> TryFromCharError
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 more1.59.0 ยท Sourceยงimpl Debug for TryFromCharError
impl Debug for TryFromCharError
1.59.0 ยท Sourceยงimpl Display for TryFromCharError
impl Display for TryFromCharError
1.59.0 ยท Sourceยงimpl Error for TryFromCharError
impl Error for TryFromCharError
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()
1.59.0 ยท Sourceยงimpl PartialEq for TryFromCharError
impl PartialEq for TryFromCharError
impl Copy for TryFromCharError
impl Eq for TryFromCharError
impl StructuralPartialEq for TryFromCharError
Auto Trait Implementationsยง
impl Freeze for TryFromCharError
impl RefUnwindSafe for TryFromCharError
impl Send for TryFromCharError
impl Sync for TryFromCharError
impl Unpin for TryFromCharError
impl UnwindSafe for TryFromCharError
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