Struct deltae::color::LchValue

source ·
pub struct LchValue {
    pub l: f32,
    pub c: f32,
    pub h: f32,
}
Expand description

Lch: Luminance, Chroma, Hue

ValueColorRange
L*Light <---> Dark0.0 <---> 100.0
cChroma (Amount of color)0.0 <---> 181.0139
hHue (Degrees)0.0 <---> 360.0°

Fields§

§l: f32

Lightness

§c: f32

Chroma

§h: f32

Hue (in degrees)

Implementations§

source§

impl LchValue

source

pub fn new(l: f32, c: f32, h: f32) -> Result<LchValue, ValueError>

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

source

pub fn hue_radians(&self) -> f32

Returns the Hue as radians rather than degrees

Trait Implementations§

source§

impl Clone for LchValue

source§

fn clone(&self) -> LchValue

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 LchValue

source§

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

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

impl Default for LchValue

source§

fn default() -> LchValue

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

impl<D: Delta + Copy> DeltaEq<D> for LchValue

source§

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

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

impl Display for LchValue

source§

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

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

impl From<&LabValue> for LchValue

source§

fn from(lab: &LabValue) -> LchValue

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<&LchValue> for XyzValue

source§

fn from(lch: &LchValue) -> XyzValue

Converts to this type from the input type.
source§

impl From<&XyzValue> for LchValue

source§

fn from(xyz: &XyzValue) -> LchValue

Converts to this type from the input type.
source§

impl From<LabValue> for LchValue

source§

fn from(lab: LabValue) -> LchValue

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<LchValue> for XyzValue

source§

fn from(lch: LchValue) -> XyzValue

Converts to this type from the input type.
source§

impl From<XyzValue> for LchValue

source§

fn from(xyz: XyzValue) -> LchValue

Converts to this type from the input type.
source§

impl FromStr for LchValue

§

type Err = ValueError

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

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

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

impl PartialEq<LchValue> for LchValue

source§

fn eq(&self, other: &LchValue) -> 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 LchValue

source§

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

Rounds the value to a number of decimal places
source§

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

§

type Error = ValueError

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

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

Performs the conversion.
source§

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

§

type Error = ValueError

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

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

Performs the conversion.
source§

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

§

type Error = ValueError

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

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

Performs the conversion.
source§

impl Validate for LchValue

source§

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

Return Err() if the values are invalid
source§

impl Copy for LchValue

source§

impl StructuralPartialEq for LchValue

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: Into<LabValue>>(self, other: L, method: DEMethod) -> DeltaE

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.