Enum radix::RadixErr[][src]

pub enum RadixErr {
    RadixNotSupported(usize),
    EmptyInput,
    FailedToPopFromStack,
    FailedToUppercase,
    IllegalChar(char),
    IllegalDigit(usize),
    InvalidDigit {
        digit: char,
        radix: usize,
    },
}

Variants

Fields of InvalidDigit

Trait Implementations

impl Copy for RadixErr
[src]

impl Clone for RadixErr
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RadixErr
[src]

Formats the value using the given formatter. Read more

impl PartialEq for RadixErr
[src]

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

This method tests for !=.

impl Eq for RadixErr
[src]

impl Error for RadixErr
[src]

This method is soft-deprecated. Read more

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

impl Display for RadixErr
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for RadixErr

impl Sync for RadixErr