pub enum TryFromIntToCharError {
Overflow,
Underflow,
Reserved,
}Expand description
Error which occurs when conversion from an integer to a char fails.
Variants§
Trait Implementations§
Source§impl Clone for TryFromIntToCharError
impl Clone for TryFromIntToCharError
Source§fn clone(&self) -> TryFromIntToCharError
fn clone(&self) -> TryFromIntToCharError
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 Debug for TryFromIntToCharError
impl Debug for TryFromIntToCharError
Source§impl Display for TryFromIntToCharError
impl Display for TryFromIntToCharError
Source§impl Error for TryFromIntToCharError
impl Error for TryFromIntToCharError
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 From<TryFromIntError> for TryFromIntToCharError
impl From<TryFromIntError> for TryFromIntToCharError
Source§fn from(other: TryFromIntError) -> TryFromIntToCharError
fn from(other: TryFromIntError) -> TryFromIntToCharError
Converts to this type from the input type.
Source§impl From<Void> for TryFromIntToCharError
impl From<Void> for TryFromIntToCharError
Source§fn from(_: Void) -> TryFromIntToCharError
fn from(_: Void) -> TryFromIntToCharError
Converts to this type from the input type.
Source§impl PartialEq for TryFromIntToCharError
impl PartialEq for TryFromIntToCharError
impl Copy for TryFromIntToCharError
impl Eq for TryFromIntToCharError
impl StructuralPartialEq for TryFromIntToCharError
Auto Trait Implementations§
impl Freeze for TryFromIntToCharError
impl RefUnwindSafe for TryFromIntToCharError
impl Send for TryFromIntToCharError
impl Sync for TryFromIntToCharError
impl Unpin for TryFromIntToCharError
impl UnwindSafe for TryFromIntToCharError
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