pub enum HexColorParseError {
InvalidLength,
InvalidFormat,
InvalidCharacter(ParseIntError),
}
Variants§
Trait Implementations§
source§impl Debug for HexColorParseError
impl Debug for HexColorParseError
source§impl From<ParseIntError> for HexColorParseError
impl From<ParseIntError> for HexColorParseError
source§fn from(err: ParseIntError) -> Self
fn from(err: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for HexColorParseError
impl RefUnwindSafe for HexColorParseError
impl Send for HexColorParseError
impl Sync for HexColorParseError
impl Unpin for HexColorParseError
impl UnwindSafe for HexColorParseError
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