Enum uint_crate::FromStrRadixErrKind [−][src]
#[non_exhaustive] pub enum FromStrRadixErrKind { InvalidCharacter, InvalidLength, UnsupportedRadix, }
Expand description
A list of error categories encountered when parsing numbers.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
A character in the input string is not valid for the given radix.
The input length is not valid for the given radix.
The given radix is not supported.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FromStrRadixErrKind
impl Send for FromStrRadixErrKind
impl Sync for FromStrRadixErrKind
impl Unpin for FromStrRadixErrKind
impl UnwindSafe for FromStrRadixErrKind
Blanket Implementations
Mutably borrows from an owned value. Read more