Struct cgats::LabValue

source ·
pub struct LabValue {
    pub l: f32,
    pub a: f32,
    pub b: f32,
}
Expand description

CIEL*a*b*

The LabValue is the key component in calculating DeltaE

ValueColorRange
L*Light <---> Dark0.0 <---> 100.0
a*Green <---> Magenta-128.0 <---> 128.0
b*Blue <---> Yellow-128.0 <---> 128.0

Fields§

§l: f32

Lightness

§a: f32

Green - Magenta

§b: f32

Blue - Yellow

Implementations§

source§

impl LabValue

source

pub fn new(l: f32, a: f32, b: f32) -> Result<LabValue, ValueError>

Returns a result of a LabValue from 3 f32s. Will return Err() if the values are out of range as determined by the Validate trait.

Trait Implementations§

source§

impl Clone for LabValue

source§

fn clone(&self) -> LabValue

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for LabValue

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for LabValue

source§

fn default() -> LabValue

Returns the “default value” for a type. Read more
source§

impl<D> DeltaEq<D> for LabValuewhere D: Delta + Copy,

source§

fn delta_eq<T>(&self, other: D, method: DEMethod, tolerance: T) -> boolwhere T: Tolerance,

Return true if the value is less than or equal to the Tolerance
source§

impl Display for LabValue

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<&LabValue> for LabValue

source§

fn from(lab: &LabValue) -> LabValue

Converts to this type from the input type.
source§

impl From<&LchValue> for LabValue

source§

fn from(lch: &LchValue) -> LabValue

Converts to this type from the input type.
source§

impl From<&XyzValue> for LabValue

source§

fn from(xyz: &XyzValue) -> LabValue

Converts to this type from the input type.
source§

impl From<LchValue> for LabValue

source§

fn from(lch: LchValue) -> LabValue

Converts to this type from the input type.
source§

impl From<XyzValue> for LabValue

source§

fn from(xyz: XyzValue) -> LabValue

Converts to this type from the input type.
source§

impl FromStr for LabValue

§

type Err = ValueError

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<LabValue, ValueError>

Parses a string s to return a value of this type. Read more
source§

impl PartialEq<LabValue> for LabValue

source§

fn eq(&self, other: &LabValue) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Round for LabValue

source§

fn round_to(self, places: i32) -> LabValue

Rounds the value to a number of decimal places
source§

impl TryFrom<&[f32; 3]> for LabValue

§

type Error = ValueError

The type returned in the event of a conversion error.
source§

fn try_from(slice: &[f32; 3]) -> Result<LabValue, ValueError>

Performs the conversion.
source§

impl TryFrom<&(f32, f32, f32)> for LabValue

§

type Error = ValueError

The type returned in the event of a conversion error.
source§

fn try_from(tuple: &(f32, f32, f32)) -> Result<LabValue, ValueError>

Performs the conversion.
source§

impl TryFrom<(f32, f32, f32)> for LabValue

§

type Error = ValueError

The type returned in the event of a conversion error.
source§

fn try_from(tuple: (f32, f32, f32)) -> Result<LabValue, ValueError>

Performs the conversion.
source§

impl Validate for LabValue

source§

fn validate(self) -> Result<LabValue, ValueError>

Return Err() if the values are invalid
source§

impl Copy for LabValue

source§

impl StructuralPartialEq for LabValue

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Delta for Twhere T: Into<LabValue>,

source§

fn delta<L>(self, other: L, method: DEMethod) -> DeltaEwhere L: Into<LabValue>,

Calculate DeltaE between 2 types Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.