Enum try_from::TryFromIntToCharError
source · pub enum TryFromIntToCharError {
Overflow,
Underflow,
Reserved,
}
Expand description
Error which occurs when conversion from an integer to a char
fails.
Variants
Trait Implementations
sourceimpl Clone for TryFromIntToCharError
impl Clone for TryFromIntToCharError
sourcefn clone(&self) -> TryFromIntToCharError
fn clone(&self) -> TryFromIntToCharError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for TryFromIntToCharError
impl Debug for TryFromIntToCharError
sourceimpl Display for TryFromIntToCharError
impl Display for TryFromIntToCharError
sourceimpl Error for TryFromIntToCharError
impl Error for TryFromIntToCharError
sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourceimpl From<TryFromIntError> for TryFromIntToCharError
impl From<TryFromIntError> for TryFromIntToCharError
sourcefn from(other: TryFromIntError) -> TryFromIntToCharError
fn from(other: TryFromIntError) -> TryFromIntToCharError
Converts to this type from the input type.
sourceimpl From<Void> for TryFromIntToCharError
impl From<Void> for TryFromIntToCharError
sourcefn from(_: Void) -> TryFromIntToCharError
fn from(_: Void) -> TryFromIntToCharError
Converts to this type from the input type.
sourceimpl PartialEq<TryFromIntToCharError> for TryFromIntToCharError
impl PartialEq<TryFromIntToCharError> for TryFromIntToCharError
sourcefn eq(&self, other: &TryFromIntToCharError) -> bool
fn eq(&self, other: &TryFromIntToCharError) -> bool
impl Copy for TryFromIntToCharError
impl Eq for TryFromIntToCharError
impl StructuralEq for TryFromIntToCharError
impl StructuralPartialEq for TryFromIntToCharError
Auto Trait Implementations
impl RefUnwindSafe for TryFromIntToCharError
impl Send for TryFromIntToCharError
impl Sync for TryFromIntToCharError
impl Unpin for TryFromIntToCharError
impl UnwindSafe for TryFromIntToCharError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more