pub enum Error {
InvalidRepresentation,
MissingRadixPrefix,
InvalidRadixPrefix,
InvalidStringQuotes,
InvalidArrayBrackets,
InvalidByteRepresentation {
source: ParseIntError,
},
}Expand description
The Error type for this crate.
Variants§
InvalidRepresentation
Invalid representation of a binary string, or could not detect encoding.
MissingRadixPrefix
A string representation is missing a radix prefix (e.g., 0x for hex).
InvalidRadixPrefix
A string representation has an invalid radix prefix (e.g., not one of 0b, 0d, 0o, 0x, or 0X).
InvalidStringQuotes
A string representation is not correctly enclosed in double quotes.
InvalidArrayBrackets
An array representation is not correctly enclosed in brackets [ and ].
InvalidByteRepresentation
A string representing a u8 byte value could not be parsed.
Fields
§
source: ParseIntErrorTrait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more