pub enum ParseColorError {
ParseInt {
source: ParseIntError,
},
WrongSize,
}Variants§
Trait Implementations§
Source§impl Debug for ParseColorError
impl Debug for ParseColorError
Source§impl Display for ParseColorError
impl Display for ParseColorError
Source§impl Error for ParseColorError
impl Error for ParseColorError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + '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<ParseColorError> for ParsePixelError
impl From<ParseColorError> for ParsePixelError
Source§fn from(source: ParseColorError) -> Self
fn from(source: ParseColorError) -> Self
Converts to this type from the input type.
Source§impl From<ParseIntError> for ParseColorError
impl From<ParseIntError> for ParseColorError
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseColorError
impl PartialEq for ParseColorError
impl StructuralPartialEq for ParseColorError
Auto Trait Implementations§
impl Freeze for ParseColorError
impl RefUnwindSafe for ParseColorError
impl Send for ParseColorError
impl Sync for ParseColorError
impl Unpin for ParseColorError
impl UnwindSafe for ParseColorError
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