Enum ecolor::ParseHexColorError
source · pub enum ParseHexColorError {
MissingHash,
InvalidLength,
InvalidInt(ParseIntError),
}
Variants§
Trait Implementations§
source§impl Clone for ParseHexColorError
impl Clone for ParseHexColorError
source§fn clone(&self) -> ParseHexColorError
fn clone(&self) -> ParseHexColorError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ParseHexColorError
impl Debug for ParseHexColorError
source§impl PartialEq for ParseHexColorError
impl PartialEq for ParseHexColorError
source§fn eq(&self, other: &ParseHexColorError) -> bool
fn eq(&self, other: &ParseHexColorError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ParseHexColorError
impl StructuralEq for ParseHexColorError
impl StructuralPartialEq for ParseHexColorError
Auto Trait Implementations§
impl RefUnwindSafe for ParseHexColorError
impl Send for ParseHexColorError
impl Sync for ParseHexColorError
impl Unpin for ParseHexColorError
impl UnwindSafe for ParseHexColorError
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