Struct palette::Hsl[][src]

#[repr(C)]
pub struct Hsl<S = Srgb, T = f32> where
    T: Component + Float,
    S: RgbSpace
{ pub hue: RgbHue<T>, pub saturation: T, pub lightness: T, pub space: PhantomData<S>, }

Linear HSL color space.

The HSL color space can be seen as a cylindrical version of RGB, where the hue is the angle around the color cylinder, the saturation is the distance from the center, and the lightness is the height from the bottom. Its composition makes it especially good for operations like changing green to red, making a color more gray, or making it darker.

See HSV for a very similar color space, with brightness instead of lightness.

Fields

The hue of the color, in degrees. Decides if it's red, blue, purple, etc.

The colorfulness of the color. 0.0 gives gray scale colors and 1.0 will give absolutely clear colors.

Decides how light the color will look. 0.0 will be black, 0.5 will give a clear color, and 1.0 will give white.

The white point and RGB primaries this color is adapted to. The default is the sRGB standard.

Methods

impl<T> Hsl<Srgb, T> where
    T: Component + Float
[src]

HSL for linear sRGB.

impl<S, T> Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

Linear HSL.

Convert to a (hue, saturation, lightness) tuple.

Convert from a (hue, saturation, lightness) tuple.

Trait Implementations

impl<S, T> FromColor<S::WhitePoint, T> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Convert from XYZ color space

Convert from RGB color space

Convert from HSV color space

Convert from HSL color space

Convert from Yxy color space

Convert from Lab* color space

Convert from LCh° color space

Convert from HWB color space

Convert from Luma

impl<S, T, _S> From<Rgb<_S, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float,
    _S: RgbStandard<Space = S>, 
[src]

Performs the conversion.

impl<S, T, _S> From<Alpha<Rgb<_S, T>, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float,
    _S: RgbStandard<Space = S>, 
[src]

Performs the conversion.

impl<S, T, _S> From<Luma<_S, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float,
    _S: LumaStandard<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

impl<S, T, _S> From<Alpha<Luma<_S, T>, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float,
    _S: LumaStandard<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

impl<S, T> From<Alpha<Hsl<S, T>, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Alpha<Hsv<S, T>, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Hwb<S, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Alpha<Hwb<S, T>, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Lab<S::WhitePoint, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Alpha<Lab<S::WhitePoint, T>, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Lch<S::WhitePoint, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Alpha<Lch<S::WhitePoint, T>, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Alpha<Xyz<S::WhitePoint, T>, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Yxy<S::WhitePoint, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Alpha<Yxy<S::WhitePoint, T>, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Color<S, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Alpha<Color<S, T>, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> Pixel<T> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

CHANNELS: usize = 3usize

The number of color channels.

Cast as a reference to raw color components.

Cast as a mutable reference to raw color components.

Convert from raw color components.

Cast from a reference to raw color components.

Cast from a mutable reference to raw color components.

Cast a slice of raw color components to a slice of colors. Read more

Cast a mutable slice of raw color components to a mutable slice of colors. Read more

Cast a slice of colors to a slice of raw color components. Read more

Cast a mutable slice of colors to a mutable slice of raw color components. Read more

impl<S: Debug, T: Debug> Debug for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

Formats the value using the given formatter. Read more

impl<S: PartialEq, T: PartialEq> PartialEq for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<S, T> Copy for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

impl<S, T> Clone for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<S, T> From<Xyz<S::WhitePoint, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

Performs the conversion.

impl<S, Sp, T> From<Hsv<Sp, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    Sp: RgbSpace<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

impl<S: RgbSpace, T: Component + Float, H: Into<RgbHue<T>>> From<(H, T, T)> for Hsl<S, T>
[src]

Performs the conversion.

impl<S: RgbSpace, T: Component + Float> Into<(RgbHue<T>, T, T)> for Hsl<S, T>
[src]

Performs the conversion.

impl<S, T> Limited for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

Check if the color's components are within the expected ranges.

Return a new color where the components has been clamped to the nearest valid values. Read more

Clamp the color's components to the nearest valid values.

impl<S, T> Mix for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The type of the mixing factor.

Mix the color with an other color, by factor. Read more

impl<S, T> Shade for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The type of the lighten/darken amount.

Lighten the color by amount.

Darken the color by amount.

impl<S, T> GetHue for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The kind of hue unit this color space uses. Read more

Calculate a hue if possible. Read more

impl<S, T> Hue for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

Return a new copy of self, but with a specific hue.

Return a new copy of self, but with the hue shifted by amount.

impl<S, T> Saturate for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The type of the (de)saturation factor.

Increase the saturation by factor.

Decrease the saturation by factor.

impl<S, T> Default for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

Returns the "default value" for a type. Read more

impl<S, T> Add<Hsl<S, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<S, T> Add<T> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<S, T> Sub<Hsl<S, T>> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<S, T> Sub<T> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<S, T, P: ?Sized> AsRef<P> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    P: RawPixel<T>, 
[src]

Performs the conversion.

impl<S, T, P: ?Sized> AsMut<P> for Hsl<S, T> where
    T: Component + Float,
    S: RgbSpace,
    P: RawPixel<T>, 
[src]

Performs the conversion.

impl<S, T> ApproxEq for Hsl<S, T> where
    T: Component + Float + ApproxEq,
    T::Epsilon: Copy + Float,
    S: RgbSpace
[src]

Used for specifying relative comparisons.

The default tolerance to use when testing values that are close together. Read more

The default relative tolerance for testing values that are far-apart. Read more

The default ULPs to tolerate when testing values that are far-apart. Read more

A test for equality that uses a relative comparison if the values are far apart.

A test for equality that uses units in the last place (ULP) if the values are far apart.

The inverse of ApproxEq::relative_eq.

The inverse of ApproxEq::ulps_eq.

impl<S, T> From<Hsl<S, T>> for Alpha<Hsv<S, T>, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, Sp, T> From<Hsl<Sp, T>> for Hsv<S, T> where
    T: Component + Float,
    S: RgbSpace,
    Sp: RgbSpace<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

impl<S, T> From<Hsl<S, T>> for Hwb<S, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<S, T> From<Hsl<S, T>> for Alpha<Hwb<S, T>, T> where
    T: Component + Float,
    S: RgbSpace,
    T: Component + Float
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hsl<_S, T>> for Lab<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hsl<_S, T>> for Alpha<Lab<Wp, T>, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hsl<_S, T>> for Lch<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hsl<_S, T>> for Alpha<Lch<Wp, T>, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<S, T, _S> From<Hsl<_S, T>> for Luma<S, T> where
    T: Component,
    S: LumaStandard,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

impl<S, T, _S> From<Hsl<_S, T>> for Alpha<Luma<S, T>, T> where
    T: Component,
    S: LumaStandard,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = S::WhitePoint>, 
[src]

Performs the conversion.

impl<S: RgbStandard, T: Component> From<Hsl<S::Space, T>> for Alpha<Rgb<S, T>, T> where
    T: Component + Float
[src]

Performs the conversion.

impl<S, T, Sp, Wp> From<Hsl<Sp, T>> for Rgb<S, T> where
    S: RgbStandard,
    T: Component + Float,
    Wp: WhitePoint,
    S::Space: RgbSpace<WhitePoint = Wp>,
    Sp: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hsl<_S, T>> for Xyz<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hsl<_S, T>> for Alpha<Xyz<Wp, T>, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hsl<_S, T>> for Yxy<Wp, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<Wp, T, _S> From<Hsl<_S, T>> for Alpha<Yxy<Wp, T>, T> where
    T: Component + Float,
    Wp: WhitePoint,
    T: Component + Float,
    _S: RgbSpace<WhitePoint = Wp>, 
[src]

Performs the conversion.

impl<S, Wp, T> IntoColor<Wp, T> for Hsl<S, T> where
    T: Component + Float,
    Wp: WhitePoint,
    S: RgbSpace<WhitePoint = Wp>, 
[src]

Convert into XYZ space

Convert into Yxy color space

Convert into Lab* color space

Convert into LCh° color space

Convert into RGB color space.

Convert into HSL color space

Convert into HSV color space

Convert into Luma

Convert into HWB color space

impl<S, T> From<Hsl<S, T>> for Color<S, T> where
    T: Float + Component,
    S: RgbSpace
[src]

Performs the conversion.

Auto Trait Implementations

impl<S, T> Send for Hsl<S, T> where
    S: Send,
    T: Send

impl<S, T> Sync for Hsl<S, T> where
    S: Sync,
    T: Sync