pub struct ParseColorError();
Expand description
An error while attempting to parse a Color
from a string.
Trait Implementations§
Source§impl Clone for ParseColorError
impl Clone for ParseColorError
Source§fn clone(&self) -> ParseColorError
fn clone(&self) -> ParseColorError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§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
1.30.0 · 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<ParseIntError> for ParseColorError
impl From<ParseIntError> for ParseColorError
Source§fn from(_: ParseIntError) -> Self
fn from(_: ParseIntError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseColorError
impl PartialEq for ParseColorError
impl Eq 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