#[repr(C)]
pub struct Cam16Jsh<T> { pub lightness: T, pub saturation: T, pub hue: Cam16Hue<T>, }
Expand description

Partial CIE CAM16, with lightness and saturation.

It contains enough information for converting CAM16 to other color spaces. See Cam16 for more details about CIE CAM16.

The full list of partial CAM16 variants is:

§Creating a Value

Any partial CAM16 set can be obtained from the full set of attributes. It’s also possible to convert directly to it, using from_xyz, or to create a new value by calling new.

use palette::{
    Srgb, FromColor, IntoColor, hues::Cam16Hue,
    cam16::{Cam16, Parameters, Cam16Jsh},
};

let partial = Cam16Jsh::new(50.0f32, 80.0, 120.0);

// There's also `new_const`:
const PARTIAL: Cam16Jsh<f32> = Cam16Jsh::new_const(50.0, 80.0, Cam16Hue::new(120.0));

// Customize these according to the viewing conditions:
let mut example_parameters = Parameters::default_static_wp(40.0);

// Partial CAM16 from sRGB, or most other color spaces:
let rgb = Srgb::new(0.3f32, 0.8, 0.1);
let partial_from_rgb = Cam16Jsh::from_xyz(rgb.into_color(), example_parameters);

// Partial CAM16 from sRGB, via full CAM16:
let rgb = Srgb::new(0.3f32, 0.8, 0.1);
let cam16_from_rgb = Cam16::from_xyz(rgb.into_color(), example_parameters);
let partial_from_full = Cam16Jsh::from(cam16_from_rgb);

// Direct conversion has the same result as going via full CAM16.
assert_eq!(partial_from_rgb, partial_from_full);

// It's also possible to convert from (and to) arrays and tuples:
let partial_from_array = Cam16Jsh::from([50.0f32, 80.0, 120.0]);
let partial_from_tuple = Cam16Jsh::from((50.0f32, 80.0, 120.0));

Fields§

§lightness: T

The lightness (J) of the color.

See Cam16::lightness.

§saturation: T

The saturation (s) of the color.

See ’Cam16::saturation.

§hue: Cam16Hue<T>

The hue (h) of the color.

See Cam16::hue.

Implementations§

source§

impl<T> Cam16Jsh<T>

source

pub fn new<H>(lightness: T, saturation: T, hue: H) -> Self
where H: Into<Cam16Hue<T>>,

Create a partial CIE CAM16 color.

source

pub const fn new_const(lightness: T, saturation: T, hue: Cam16Hue<T>) -> Self

Create a partial CIE CAM16 color. This is the same as Cam16Jsh::new without the generic hue type. It’s temporary until const fn supports traits.

source

pub fn into_components(self) -> (T, T, Cam16Hue<T>)

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

source

pub fn from_components<H>((lightness, saturation, hue): (T, T, H)) -> Self
where H: Into<Cam16Hue<T>>,

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

source

pub fn from_xyz<WpParam>( color: Xyz<WpParam::StaticWp, T>, parameters: impl Into<BakedParameters<WpParam, T::Scalar>> ) -> Self
where Xyz<WpParam::StaticWp, T>: IntoCam16Unclamped<WpParam, Self, Scalar = T::Scalar>, T: FromScalar, WpParam: WhitePointParameter<T::Scalar>,

Derive partial CIE CAM16 attributes for the provided color, under the provided viewing conditions.

use palette::{Srgb, IntoColor, cam16::{Cam16Jsh, Parameters}};

// Customize these according to the viewing conditions:
let mut example_parameters = Parameters::default_static_wp(40.0);

let rgb = Srgb::new(0.3f32, 0.8, 0.1);
let partial = Cam16Jsh::from_xyz(rgb.into_color(), example_parameters);

It’s also possible to “pre-bake” the parameters, to avoid recalculate some of the derived values when converting multiple color value.

use palette::{Srgb, IntoColor, cam16::{Cam16Jsh, Parameters}};

// Customize these according to the viewing conditions:
let mut example_parameters = Parameters::default_static_wp(40.0);

let baked_parameters = example_parameters.bake();

let rgb = Srgb::new(0.3f32, 0.8, 0.1);
let partial = Cam16Jsh::from_xyz(rgb.into_color(), baked_parameters);
source

pub fn into_xyz<WpParam>( self, parameters: impl Into<BakedParameters<WpParam, T::Scalar>> ) -> Xyz<WpParam::StaticWp, T>
where Self: Cam16IntoUnclamped<WpParam, Xyz<WpParam::StaticWp, T>, Scalar = T::Scalar>, WpParam: WhitePointParameter<T>, T: FromScalar,

Construct an XYZ color from these CIE CAM16 attributes, under the provided viewing conditions.

use palette::{Srgb, FromColor, cam16::{Cam16Jsh, Parameters}};

// Customize these according to the viewing conditions:
let mut example_parameters = Parameters::default_static_wp(40.0);

let partial = Cam16Jsh::new(50.0f32, 80.0, 120.0);
let rgb = Srgb::from_color(partial.into_xyz(example_parameters));

It’s also possible to “pre-bake” the parameters, to avoid recalculate some of the derived values when converting multiple color value.

use palette::{Srgb, FromColor, cam16::{Cam16Jsh, Parameters}};

// Customize these according to the viewing conditions:
let mut example_parameters = Parameters::default_static_wp(40.0);

let baked_parameters = example_parameters.bake();

let partial = Cam16Jsh::new(50.0f32, 80.0, 120.0);
let rgb = Srgb::from_color(partial.into_xyz(baked_parameters));
source

pub fn from_full(full: Cam16<T>) -> Self

Create a partial set of CIE CAM16 attributes.

It’s also possible to use Cam16Jsh::from or Cam16::into.

source

pub fn into_full<WpParam>( self, parameters: impl Into<BakedParameters<WpParam, T::Scalar>> ) -> Cam16<T>
where Self: IntoCam16Unclamped<WpParam, Cam16<T>, Scalar = T::Scalar>, T: FromScalar,

Reconstruct a full set of CIE CAM16 attributes, using the original viewing conditions.

use palette::{Srgb, IntoColor, cam16::{Cam16, Cam16Jsh, Parameters}};
use approx::assert_relative_eq;

// Customize these according to the viewing conditions:
let mut example_parameters = Parameters::default_static_wp(40.0);

// Optional, but saves some work:
let baked_parameters = example_parameters.bake();

let rgb = Srgb::new(0.3f64, 0.8, 0.1);
let cam16 = Cam16::from_xyz(rgb.into_color(), baked_parameters);
let partial = Cam16Jsh::from(cam16);
let reconstructed = partial.into_full(baked_parameters);

assert_relative_eq!(cam16, reconstructed, epsilon = 0.0000000000001);
source§

impl<T> Cam16Jsh<&T>

source

pub fn copied(&self) -> Cam16Jsh<T>
where T: Copy,

Get an owned, copied version of this color.

source

pub fn cloned(&self) -> Cam16Jsh<T>
where T: Clone,

Get an owned, cloned version of this color.

source§

impl<T> Cam16Jsh<&mut T>

source

pub fn set(&mut self, value: Cam16Jsh<T>)

Update this color with new values.

source

pub fn as_refs(&self) -> Cam16Jsh<&T>

Borrow this color’s components as shared references.

source

pub fn copied(&self) -> Cam16Jsh<T>
where T: Copy,

Get an owned, copied version of this color.

source

pub fn cloned(&self) -> Cam16Jsh<T>
where T: Clone,

Get an owned, cloned version of this color.

source§

impl<C> Cam16Jsh<C>

source

pub fn iter<'a>(&'a self) -> <&'a Self as IntoIterator>::IntoIter

Return an iterator over the colors in the wrapped collections.

source

pub fn iter_mut<'a>(&'a mut self) -> <&'a mut Self as IntoIterator>::IntoIter

Return an iterator that allows modifying the colors in the wrapped collections.

source

pub fn get<'a, I, T>( &'a self, index: I ) -> Option<Cam16Jsh<&<I as SliceIndex<[T]>>::Output>>
where T: 'a, C: AsRef<[T]>, I: SliceIndex<[T]> + Clone,

Get a color, or slice of colors, with references to the components at index. See slice::get for details.

source

pub fn get_mut<'a, I, T>( &'a mut self, index: I ) -> Option<Cam16Jsh<&mut <I as SliceIndex<[T]>>::Output>>
where T: 'a, C: AsMut<[T]>, I: SliceIndex<[T]> + Clone,

Get a color, or slice of colors, that allows modifying the components at index. See slice::get_mut for details.

source§

impl<T> Cam16Jsh<Vec<T>>

source

pub fn with_capacity(capacity: usize) -> Self

Create a struct of vectors with a minimum capacity. See Vec::with_capacity for details.

source

pub fn push(&mut self, value: Cam16Jsh<T>)

Push an additional color’s components onto the component vectors. See Vec::push for details.

source

pub fn pop(&mut self) -> Option<Cam16Jsh<T>>

Pop a color’s components from the component vectors. See Vec::pop for details.

source

pub fn clear(&mut self)

Clear the component vectors. See Vec::clear for details.

source

pub fn drain<R>(&mut self, range: R) -> Iter<Drain<'_, T>>
where R: RangeBounds<usize> + Clone,

Return an iterator that moves colors out of the specified range.

Trait Implementations§

source§

impl<T> AbsDiffEq for Cam16Jsh<T>
where T: AbsDiffEq, T::Epsilon: Clone, Cam16Hue<T>: AbsDiffEq<Epsilon = T::Epsilon>,

§

type Epsilon = <T as AbsDiffEq>::Epsilon

Used for specifying relative comparisons.
source§

fn default_epsilon() -> Self::Epsilon

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

fn abs_diff_eq(&self, other: &Self, epsilon: T::Epsilon) -> bool

A test for equality that uses the absolute difference to compute the approximate equality of two numbers.
source§

fn abs_diff_ne(&self, other: &Self, epsilon: T::Epsilon) -> bool

The inverse of [AbsDiffEq::abs_diff_eq].
source§

impl<T> Add<T> for Cam16Jsh<T>
where T: Add<Output = T> + Clone,

§

type Output = Cam16Jsh<T>

The resulting type after applying the + operator.
source§

fn add(self, c: T) -> Self::Output

Performs the + operation. Read more
source§

impl<T> Add for Cam16Jsh<T>
where T: Add<Output = T>,

§

type Output = Cam16Jsh<T>

The resulting type after applying the + operator.
source§

fn add(self, other: Self) -> Self::Output

Performs the + operation. Read more
source§

impl<T> AddAssign<T> for Cam16Jsh<T>
where T: AddAssign + Clone,

source§

fn add_assign(&mut self, c: T)

Performs the += operation. Read more
source§

impl<T> AddAssign for Cam16Jsh<T>
where T: AddAssign,

source§

fn add_assign(&mut self, other: Self)

Performs the += operation. Read more
source§

impl<T> ArrayCast for Cam16Jsh<T>

§

type Array = [T; 3]

The output type of a cast to an array.
source§

impl<T> AsMut<[T]> for Cam16Jsh<T>

source§

fn as_mut(&mut self) -> &mut [T]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T> AsMut<[T; 3]> for Cam16Jsh<T>

source§

fn as_mut(&mut self) -> &mut [T; 3]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T> AsMut<Cam16Jsh<T>> for [T; 3]

source§

fn as_mut(&mut self) -> &mut Cam16Jsh<T>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<T> AsRef<[T]> for Cam16Jsh<T>

source§

fn as_ref(&self) -> &[T]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> AsRef<[T; 3]> for Cam16Jsh<T>

source§

fn as_ref(&self) -> &[T; 3]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> AsRef<Cam16Jsh<T>> for [T; 3]

source§

fn as_ref(&self) -> &Cam16Jsh<T>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<WpParam, T> Cam16FromUnclamped<WpParam, Cam16Jsh<T>> for Cam16<T>

§

type Scalar = <T as FromScalar>::Scalar

The number type that’s used in parameters when converting.
source§

fn cam16_from_unclamped( cam16: Cam16Jsh<T>, parameters: BakedParameters<WpParam, Self::Scalar> ) -> Self

Converts color into Self, using the provided parameters.
source§

impl<WpParam, T> Cam16FromUnclamped<WpParam, Xyz<<WpParam as WhitePointParameter<T>>::StaticWp, T>> for Cam16Jsh<T>
where Xyz<WpParam::StaticWp, T>: IntoCam16Unclamped<WpParam, Cam16<T>>, WpParam: WhitePointParameter<T>,

§

type Scalar = <Xyz<<WpParam as WhitePointParameter<T>>::StaticWp, T> as IntoCam16Unclamped<WpParam, Cam16<T>>>::Scalar

The number type that’s used in parameters when converting.
source§

fn cam16_from_unclamped( color: Xyz<WpParam::StaticWp, T>, parameters: BakedParameters<WpParam, Self::Scalar> ) -> Self

Converts color into Self, using the provided parameters.
source§

impl<T> Clamp for Cam16Jsh<T>
where T: Clamp + Zero,

source§

fn clamp(self) -> Self

Return a new color where out-of-bounds components have been changed to the nearest valid values. Read more
source§

impl<T> ClampAssign for Cam16Jsh<T>
where T: ClampAssign + Zero,

source§

fn clamp_assign(&mut self)

Changes out-of-bounds components to the nearest valid values. Read more
source§

impl<T: Clone> Clone for Cam16Jsh<T>

source§

fn clone(&self) -> Cam16Jsh<T>

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<T: Debug> Debug for Cam16Jsh<T>

source§

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

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

impl<T: Default> Default for Cam16Jsh<T>

source§

fn default() -> Cam16Jsh<T>

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

impl<T, C> Extend<Cam16Jsh<T>> for Cam16Jsh<C>
where C: Extend<T>,

source§

fn extend<I: IntoIterator<Item = Cam16Jsh<T>>>(&mut self, iter: I)

Extends a collection with the contents of an iterator. Read more
source§

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
source§

impl<'a, T> From<&'a [T; 3]> for &'a Cam16Jsh<T>

source§

fn from(array: &'a [T; 3]) -> Self

Converts to this type from the input type.
source§

impl<'a, T> From<&'a Cam16Jsh<T>> for &'a [T]

source§

fn from(color: &'a Cam16Jsh<T>) -> Self

Converts to this type from the input type.
source§

impl<'a, T> From<&'a Cam16Jsh<T>> for &'a [T; 3]

source§

fn from(color: &'a Cam16Jsh<T>) -> Self

Converts to this type from the input type.
source§

impl<'a, T> From<&'a mut [T; 3]> for &'a mut Cam16Jsh<T>

source§

fn from(array: &'a mut [T; 3]) -> Self

Converts to this type from the input type.
source§

impl<'a, T> From<&'a mut Cam16Jsh<T>> for &'a mut [T]

source§

fn from(color: &'a mut Cam16Jsh<T>) -> Self

Converts to this type from the input type.
source§

impl<'a, T> From<&'a mut Cam16Jsh<T>> for &'a mut [T; 3]

source§

fn from(color: &'a mut Cam16Jsh<T>) -> Self

Converts to this type from the input type.
source§

impl<T, V, const N: usize> From<[Cam16Jsh<T>; N]> for Cam16Jsh<V>
where [T; N]: Default, V: FromScalarArray<N, Scalar = T>,

source§

fn from(colors: [Cam16Jsh<T>; N]) -> Self

Converts to this type from the input type.
source§

impl<T> From<[T; 3]> for Cam16Jsh<T>

source§

fn from(array: [T; 3]) -> Self

Converts to this type from the input type.
source§

impl<T, H: Into<Cam16Hue<T>>> From<(T, T, H)> for Cam16Jsh<T>

source§

fn from(components: (T, T, H)) -> Self

Converts to this type from the input type.
source§

impl<T> From<Box<[T; 3]>> for Box<Cam16Jsh<T>>

source§

fn from(array: Box<[T; 3]>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Cam16<T>> for Cam16Jsh<T>

source§

fn from(value: Cam16<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Cam16Jsh<T>> for [T; 3]

source§

fn from(color: Cam16Jsh<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Cam16Jsh<T>> for (T, T, Cam16Hue<T>)

source§

fn from(color: Cam16Jsh<T>) -> (T, T, Cam16Hue<T>)

Converts to this type from the input type.
source§

impl<T, V, const N: usize> From<Cam16Jsh<V>> for [Cam16Jsh<T>; N]
where Self: Default, V: IntoScalarArray<N, Scalar = T>,

source§

fn from(color: Cam16Jsh<V>) -> Self

Converts to this type from the input type.
source§

impl<WpParam, T> FromCam16Unclamped<WpParam, Cam16Jsh<T>> for Cam16<T>
where Self: Cam16FromUnclamped<WpParam, Cam16Jsh<T>>,

§

type Scalar = <Cam16<T> as Cam16FromUnclamped<WpParam, Cam16Jsh<T>>>::Scalar

The number type that’s used in parameters when converting.
source§

fn from_cam16_unclamped( cam16: Cam16Jsh<T>, parameters: BakedParameters<WpParam, Self::Scalar> ) -> Self

Converts cam16 into Self, using the provided parameters.
source§

impl<WpParam, T> FromCam16Unclamped<WpParam, Cam16Jsh<T>> for Xyz<WpParam::StaticWp, T>

§

type Scalar = <T as FromScalar>::Scalar

The number type that’s used in parameters when converting.
source§

fn from_cam16_unclamped( cam16: Cam16Jsh<T>, parameters: BakedParameters<WpParam, Self::Scalar> ) -> Self

Converts cam16 into Self, using the provided parameters.
source§

impl<T, _C, _A> FromColorUnclamped<Alpha<_C, _A>> for Cam16Jsh<T>
where _C: IntoColorUnclamped<Self>,

source§

fn from_color_unclamped(color: Alpha<_C, _A>) -> Self

Convert from T. The resulting color might be invalid in its color space. Read more
source§

impl<T> FromColorUnclamped<Cam16<T>> for Cam16Jsh<T>

source§

fn from_color_unclamped(val: Cam16<T>) -> Self

Convert from T. The resulting color might be invalid in its color space. Read more
source§

impl<T> FromColorUnclamped<Cam16Jsh<T>> for Cam16Jsh<T>

source§

fn from_color_unclamped(val: Self) -> Self

Convert from T. The resulting color might be invalid in its color space. Read more
source§

impl<T, C> FromIterator<Cam16Jsh<T>> for Cam16Jsh<C>
where Self: Extend<Cam16Jsh<T>>, C: Default,

source§

fn from_iter<I: IntoIterator<Item = Cam16Jsh<T>>>(iter: I) -> Self

Creates a value from an iterator. Read more
source§

impl<T> GetHue for Cam16Jsh<T>
where T: Clone,

§

type Hue = Cam16Hue<T>

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

fn get_hue(&self) -> Cam16Hue<T>

Calculate a hue if possible. Read more
source§

impl<T> HasBoolMask for Cam16Jsh<T>
where T: HasBoolMask,

§

type Mask = <T as HasBoolMask>::Mask

The mask type to use for selecting Self values.
source§

impl<'a, 'b, T> IntoIterator for &'a Cam16Jsh<&'b [T]>

§

type Item = Cam16Jsh<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Iter<Iter<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, 'b, T> IntoIterator for &'a Cam16Jsh<&'b mut [T]>

§

type Item = Cam16Jsh<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Iter<Iter<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T, const N: usize> IntoIterator for &'a Cam16Jsh<[T; N]>

§

type Item = Cam16Jsh<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Iter<Iter<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a Cam16Jsh<Box<[T]>>

§

type Item = Cam16Jsh<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Iter<Iter<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a Cam16Jsh<Vec<T>>

§

type Item = Cam16Jsh<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Iter<Iter<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, 'b, T> IntoIterator for &'a mut Cam16Jsh<&'b mut [T]>

§

type Item = Cam16Jsh<&'a mut T>

The type of the elements being iterated over.
§

type IntoIter = Iter<IterMut<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T, const N: usize> IntoIterator for &'a mut Cam16Jsh<[T; N]>

§

type Item = Cam16Jsh<&'a mut T>

The type of the elements being iterated over.
§

type IntoIter = Iter<IterMut<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a mut Cam16Jsh<Box<[T]>>

§

type Item = Cam16Jsh<&'a mut T>

The type of the elements being iterated over.
§

type IntoIter = Iter<IterMut<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for &'a mut Cam16Jsh<Vec<T>>

§

type Item = Cam16Jsh<&'a mut T>

The type of the elements being iterated over.
§

type IntoIter = Iter<IterMut<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for Cam16Jsh<&'a [T]>

§

type Item = Cam16Jsh<&'a T>

The type of the elements being iterated over.
§

type IntoIter = Iter<Iter<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, T> IntoIterator for Cam16Jsh<&'a mut [T]>

§

type Item = Cam16Jsh<&'a mut T>

The type of the elements being iterated over.
§

type IntoIter = Iter<IterMut<'a, T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<T, const N: usize> IntoIterator for Cam16Jsh<[T; N]>

§

type Item = Cam16Jsh<T>

The type of the elements being iterated over.
§

type IntoIter = Iter<IntoIter<T, N>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<T> IntoIterator for Cam16Jsh<Vec<T>>

§

type Item = Cam16Jsh<T>

The type of the elements being iterated over.
§

type IntoIter = Iter<IntoIter<T>>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<T> IsWithinBounds for Cam16Jsh<T>
where T: PartialCmp + Zero, T::Mask: BitAnd<Output = T::Mask>,

source§

fn is_within_bounds(&self) -> T::Mask

Check if the color’s components are within the expected range bounds. Read more
source§

impl<T> Mix for Cam16Jsh<T>

§

type Scalar = T

The type of the mixing factor.
source§

fn mix(self, other: Self, factor: T) -> Self

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

impl<T> MixAssign for Cam16Jsh<T>

§

type Scalar = T

The type of the mixing factor.
source§

fn mix_assign(&mut self, other: Self, factor: T)

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

impl<T> PartialEq for Cam16Jsh<T>

source§

fn eq(&self, other: &Self) -> 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<T> RelativeEq for Cam16Jsh<T>
where T: RelativeEq, T::Epsilon: Clone, Cam16Hue<T>: RelativeEq + AbsDiffEq<Epsilon = T::Epsilon>,

source§

fn default_max_relative() -> T::Epsilon

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

fn relative_eq( &self, other: &Self, epsilon: T::Epsilon, max_relative: T::Epsilon ) -> bool

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

fn relative_ne( &self, other: &Self, epsilon: T::Epsilon, max_relative: T::Epsilon ) -> bool

The inverse of [RelativeEq::relative_eq].
source§

impl<T> SaturatingAdd<T> for Cam16Jsh<T>
where T: SaturatingAdd<Output = T> + Clone,

§

type Output = Cam16Jsh<T>

The resulting type.
source§

fn saturating_add(self, c: T) -> Self::Output

Returns the sum of self and other, but saturates instead of overflowing.
source§

impl<T> SaturatingAdd for Cam16Jsh<T>
where T: SaturatingAdd<Output = T>,

§

type Output = Cam16Jsh<T>

The resulting type.
source§

fn saturating_add(self, other: Self) -> Self::Output

Returns the sum of self and other, but saturates instead of overflowing.
source§

impl<T> SaturatingSub<T> for Cam16Jsh<T>
where T: SaturatingSub<Output = T> + Clone,

§

type Output = Cam16Jsh<T>

The resulting type.
source§

fn saturating_sub(self, c: T) -> Self::Output

Returns the difference of self and other, but saturates instead of overflowing.
source§

impl<T> SaturatingSub for Cam16Jsh<T>
where T: SaturatingSub<Output = T>,

§

type Output = Cam16Jsh<T>

The resulting type.
source§

fn saturating_sub(self, other: Self) -> Self::Output

Returns the difference of self and other, but saturates instead of overflowing.
source§

impl<T, H> SetHue<H> for Cam16Jsh<T>
where H: Into<Cam16Hue<T>>,

source§

fn set_hue(&mut self, hue: H)

Change the hue to a specific value.
source§

impl<T> ShiftHue for Cam16Jsh<T>
where T: Add<Output = T>,

§

type Scalar = T

The type of the hue modifier.
source§

fn shift_hue(self, amount: Self::Scalar) -> Self

Return a copy of self with the hue shifted by amount.
source§

impl<T> ShiftHueAssign for Cam16Jsh<T>
where T: AddAssign,

§

type Scalar = T

The type of the hue modifier.
source§

fn shift_hue_assign(&mut self, amount: Self::Scalar)

Shifts the hue by amount.
source§

impl<T> Sub<T> for Cam16Jsh<T>
where T: Sub<Output = T> + Clone,

§

type Output = Cam16Jsh<T>

The resulting type after applying the - operator.
source§

fn sub(self, c: T) -> Self::Output

Performs the - operation. Read more
source§

impl<T> Sub for Cam16Jsh<T>
where T: Sub<Output = T>,

§

type Output = Cam16Jsh<T>

The resulting type after applying the - operator.
source§

fn sub(self, other: Self) -> Self::Output

Performs the - operation. Read more
source§

impl<T> SubAssign<T> for Cam16Jsh<T>
where T: SubAssign + Clone,

source§

fn sub_assign(&mut self, c: T)

Performs the -= operation. Read more
source§

impl<T> SubAssign for Cam16Jsh<T>
where T: SubAssign,

source§

fn sub_assign(&mut self, other: Self)

Performs the -= operation. Read more
source§

impl<'a, T> TryFrom<&'a [T]> for &'a Cam16Jsh<T>

§

type Error = <&'a [T; 3] as TryFrom<&'a [T]>>::Error

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

fn try_from(slice: &'a [T]) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<'a, T> TryFrom<&'a mut [T]> for &'a mut Cam16Jsh<T>

§

type Error = <&'a mut [T; 3] as TryFrom<&'a mut [T]>>::Error

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

fn try_from(slice: &'a mut [T]) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<T> UlpsEq for Cam16Jsh<T>
where T: UlpsEq, T::Epsilon: Clone, Cam16Hue<T>: UlpsEq + AbsDiffEq<Epsilon = T::Epsilon>,

source§

fn default_max_ulps() -> u32

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

fn ulps_eq(&self, other: &Self, epsilon: T::Epsilon, max_ulps: u32) -> bool

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

fn ulps_ne(&self, other: &Self, epsilon: T::Epsilon, max_ulps: u32) -> bool

The inverse of [UlpsEq::ulps_eq].
source§

impl<T, _A> WithAlpha<_A> for Cam16Jsh<T>
where _A: Stimulus,

§

type Color = Cam16Jsh<T>

The opaque color type, without any transparency. Read more
§

type WithAlpha = Alpha<Cam16Jsh<T>, _A>

The color type with transparency applied. Read more
source§

fn with_alpha(self, alpha: _A) -> Self::WithAlpha

Transforms the color into a transparent color with the provided alpha value. If Self already has a transparency, it is overwritten. Read more
source§

fn without_alpha(self) -> Self::Color

Removes the transparency from the color. If Self::Color has an internal transparency field, that field will be set to A::max_intensity() to make it opaque. Read more
source§

fn split(self) -> (Self::Color, _A)

Splits the color into separate color and transparency values. Read more
source§

fn opaque(self) -> Self::WithAlpha
where A: Stimulus,

Transforms the color into a fully opaque color with a transparency field. If Self already has a transparency, it is overwritten. Read more
source§

fn transparent(self) -> Self::WithAlpha
where A: Zero,

Transforms the color into a fully transparent color. If Self already has a transparency, it is overwritten. Read more
source§

impl<T, H> WithHue<H> for Cam16Jsh<T>
where H: Into<Cam16Hue<T>>,

source§

fn with_hue(self, hue: H) -> Self

Return a copy of self with a specific hue.
source§

impl<T> Zeroable for Cam16Jsh<T>
where T: Zeroable,

§

fn zeroed() -> Self

source§

impl<T: Copy> Copy for Cam16Jsh<T>

source§

impl<T> Eq for Cam16Jsh<T>
where T: Eq, Cam16Hue<T>: Eq,

source§

impl<T> Pod for Cam16Jsh<T>
where T: Pod,

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Cam16Jsh<T>
where T: RefUnwindSafe,

§

impl<T> Send for Cam16Jsh<T>
where T: Send,

§

impl<T> Sync for Cam16Jsh<T>
where T: Sync,

§

impl<T> Unpin for Cam16Jsh<T>
where T: Unpin,

§

impl<T> UnwindSafe for Cam16Jsh<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: Real + Zero + Arithmetics + Clone, Swp: WhitePoint<T>, Dwp: WhitePoint<T>, D: AdaptFrom<S, Swp, Dwp, T>,

source§

fn adapt_into_using<M>(self, method: M) -> D
where M: TransformMatrix<T>,

Convert the source color to the destination color using the specified method.
source§

fn adapt_into(self) -> D

Convert the source color to the destination color using the bradford method by default.
source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T, C> ArraysFrom<C> for T
where C: IntoArrays<T>,

source§

fn arrays_from(colors: C) -> T

Cast a collection of colors into a collection of arrays.
source§

impl<T, C> ArraysInto<C> for T
where C: FromArrays<T>,

source§

fn arrays_into(self) -> C

Cast this collection of arrays into a collection of colors.
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for U
where T: FromCam16Unclamped<WpParam, U>,

§

type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar

The number type that’s used in parameters when converting.
source§

fn cam16_into_unclamped( self, parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar> ) -> T

Converts self into C, using the provided parameters.
§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<T, C> ComponentsFrom<C> for T
where C: IntoComponents<T>,

source§

fn components_from(colors: C) -> T

Cast a collection of colors into a collection of color components.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromAngle<T> for T

source§

fn from_angle(angle: T) -> T

Performs a conversion from angle.
source§

impl<T, U> FromColor<T> for U
where U: FromColorUnclamped<T> + Clamp,

source§

fn from_color(t: T) -> U

Convert from T with values clamped to the color defined bounds. Read more
source§

impl<T, U> FromColorMut<U> for T
where T: FromColor<U> + ArrayCast + Clone, U: FromColor<T> + ArrayCast<Array = <T as ArrayCast>::Array> + Clone,

source§

fn from_color_mut(color: &mut U) -> FromColorMutGuard<'_, T, U>

Temporarily convert from another color type in place. Read more
source§

impl<T, U> FromColorUnclampedMut<U> for T
where T: FromColorUnclamped<U> + ArrayCast + Clone, U: FromColorUnclamped<T> + ArrayCast<Array = <T as ArrayCast>::Array> + Clone,

source§

fn from_color_unclamped_mut( color: &mut U ) -> FromColorUnclampedMutGuard<'_, T, U>

Temporarily convert from another color type in place, without clamping. Read more
source§

impl<T, U> FromStimulus<U> for T
where U: IntoStimulus<T>,

source§

fn from_stimulus(other: U) -> T

Converts other into Self, while performing the appropriate scaling, rounding and clamping.
source§

impl<T, U> Into<U> for T
where 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, U> IntoAngle<U> for T
where U: FromAngle<T>,

source§

fn into_angle(self) -> U

Performs a conversion into T.
source§

impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for U
where T: Cam16FromUnclamped<WpParam, U>,

§

type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar

The number type that’s used in parameters when converting.
source§

fn into_cam16_unclamped( self, parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar> ) -> T

Converts self into C, using the provided parameters.
source§

impl<T, U> IntoColor<U> for T
where U: FromColor<T>,

source§

fn into_color(self) -> U

Convert into T with values clamped to the color defined bounds Read more
source§

impl<T, U> IntoColorMut<T> for U
where T: FromColorMut<U> + ?Sized, U: FromColorMut<T> + ?Sized,

source§

fn into_color_mut(&mut self) -> FromColorMutGuard<'_, T, U>

Temporarily convert to another color type in place. Read more
source§

impl<T, U> IntoColorUnclamped<U> for T
where U: FromColorUnclamped<T>,

source§

fn into_color_unclamped(self) -> U

Convert into T. The resulting color might be invalid in its color space Read more
source§

impl<T, U> IntoColorUnclampedMut<T> for U

source§

fn into_color_unclamped_mut(&mut self) -> FromColorUnclampedMutGuard<'_, T, U>

Temporarily convert to another color type in place, without clamping. Read more
source§

impl<T> IntoStimulus<T> for T

source§

fn into_stimulus(self) -> T

Converts self into T, while performing the appropriate scaling, rounding and clamping.
source§

impl<T> ToOwned for T
where 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, C> TryComponentsInto<C> for T
where C: TryFromComponents<T>,

§

type Error = <C as TryFromComponents<T>>::Error

The error for when try_into_colors fails to cast.
source§

fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>

Try to cast this collection of color components into a collection of colors. Read more
source§

impl<T, U> TryFrom<U> for T
where 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> TryFromColor<T> for U
where U: FromColorUnclamped<T> + IsWithinBounds<Mask = bool>,

source§

fn try_from_color(t: T) -> Result<U, OutOfBounds<U>>

Convert from T, returning ok if the color is inside of its defined range, otherwise an OutOfBounds error is returned which contains the unclamped color. Read more
source§

impl<T, U> TryInto<U> for T
where 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.
source§

impl<T, U> TryIntoColor<U> for T
where U: TryFromColor<T>,

source§

fn try_into_color(self) -> Result<U, OutOfBounds<U>>

Convert into T, returning ok if the color is inside of its defined range, otherwise an OutOfBounds error is returned which contains the unclamped color. Read more
source§

impl<C, U> UintsFrom<C> for U
where C: IntoUints<U>,

source§

fn uints_from(colors: C) -> U

Cast a collection of colors into a collection of unsigned integers.
source§

impl<C, U> UintsInto<C> for U
where C: FromUints<U>,

source§

fn uints_into(self) -> C

Cast this collection of unsigned integers into a collection of colors.
§

impl<T> AnyBitPattern for T
where T: Pod,

§

impl<T> NoUninit for T
where T: Pod,