pub enum ParseHexError {
InvalidCharacter,
TooLong,
TooShort,
Other,
}
Expand description
Errors exhibited from read_hex
.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParseHexError
impl RefUnwindSafe for ParseHexError
impl Send for ParseHexError
impl Sync for ParseHexError
impl Unpin for ParseHexError
impl UnwindSafe for ParseHexError
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