[][src]Struct deltae::color::LchValue

pub struct LchValue {
    pub l: f32,
    pub c: f32,
    pub h: f32,
}

Fields

l: f32c: f32h: f32

Methods

impl LchValue[src]

pub fn new(l: f32, c: f32, h: f32) -> ValueResult<LchValue>[src]

New LchValue from 3 f32s

pub fn to_lab(&self) -> LabValue[src]

Convert LchValue to LabValue

pub fn round_to(&self, places: i32) -> LchValue[src]

Round LchValue to nearest decimal places.

pub fn to_a(&self) -> [f32; 3][src]

Returns an array of [L, c, h]

pub fn to_vec(&self) -> Vec<f32>[src]

Returns a Vec<f32> of [L, c, h]

Trait Implementations

impl Clone for LchValue[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<LchValue> for LchValue[src]

impl Default for LchValue[src]

impl Display for LchValue[src]

impl FromStr for LchValue[src]

type Err = ValueError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> ValueResult<LchValue>[src]

New LchValue from &str

impl Debug for LchValue[src]

Auto Trait Implementations

impl Send for LchValue

impl Sync for LchValue

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]