Enum try_from::TryFromIntToCharError [] [src]

pub enum TryFromIntToCharError {
    Overflow,
    Underflow,
    Reserved,
}

Error which occurs when conversion from an integer to a char fails.

Variants

Trait Implementations

impl Clone for TryFromIntToCharError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for TryFromIntToCharError
[src]

impl Debug for TryFromIntToCharError
[src]

Formats the value using the given formatter.

impl Eq for TryFromIntToCharError
[src]

impl PartialEq for TryFromIntToCharError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for TryFromIntToCharError
[src]

Formats the value using the given formatter. Read more

impl Error for TryFromIntToCharError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<TryFromIntError> for TryFromIntToCharError
[src]

Performs the conversion.

impl From<Void> for TryFromIntToCharError
[src]

Performs the conversion.