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
Overflow
Underflow
Reserved
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 more
sourceimpl 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
Performs the conversion.
sourceimpl From<Void> for TryFromIntToCharError
impl From<Void> for TryFromIntToCharError
sourcefn from(_: Void) -> TryFromIntToCharError
fn from(_: Void) -> TryFromIntToCharError
Performs the conversion.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more