pub enum DEMethod {
DE2000,
DECMC(f32, f32),
DE1994G,
DE1994T,
DE1976,
}
Expand description
The most common DeltaE methods
Variants§
DE2000
The default DeltaE method
DECMC(f32, f32)
An implementation of DeltaE with separate tolerances for Lightness and Chroma
DE1994G
CIE94 DeltaE implementation, weighted with a tolerance for graphics
DE1994T
CIE94 DeltaE implementation, weighted with a tolerance for textiles
DE1976
The original DeltaE implementation, a basic euclidian distance formula
Trait Implementations§
source§impl PartialEq for DEMethod
impl PartialEq for DEMethod
impl Copy for DEMethod
impl Eq for DEMethod
impl StructuralPartialEq for DEMethod
Auto Trait Implementations§
impl Freeze for DEMethod
impl RefUnwindSafe for DEMethod
impl Send for DEMethod
impl Sync for DEMethod
impl Unpin for DEMethod
impl UnwindSafe for DEMethod
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