Struct cosmic::cosmic_theme::palette::cam16::Cam16UcsJab
source · #[repr(C)]pub struct Cam16UcsJab<T> {
pub lightness: T,
pub a: T,
pub b: T,
}
Expand description
The Cartesian form of CAM16-UCS, or J’ a’ b’.
CAM16-UCS is a perceptually uniform color space, based on CAM16 lightness
and colorfulness. Its polar counterpart is Cam16UcsJmh
.
§Creating a Value
use palette::{
Srgb, FromColor, IntoColor,
cam16::{Cam16, Parameters, Cam16UcsJab},
};
let ucs = Cam16UcsJab::new(50.0f32, 80.0, -30.0);
// `new` is also `const`:
const UCS: Cam16UcsJab<f32> = Cam16UcsJab::new(50.0, 80.0, -30.0);
// Customize these according to the viewing conditions:
let mut example_parameters = Parameters::default_static_wp(40.0);
// CAM16-UCS from sRGB, or most other color spaces:
let rgb = Srgb::new(0.3f32, 0.8, 0.1);
let cam16 = Cam16::from_xyz(rgb.into_color(), example_parameters);
let ucs_from_rgb = Cam16UcsJab::from_color(cam16);
// It's also possible to convert from (and to) arrays and tuples:
let ucs_from_array = Cam16UcsJab::from([50.0f32, 80.0, -30.0]);
let ucs_from_tuple = Cam16UcsJab::from((50.0f32, 80.0, -30.0));
Fields§
§lightness: T
The lightness (J’) of the color.
It’s derived from Cam16::lightness
and ranges from 0.0
to 100.0
.
a: T
The redness/greenness (a’) of the color.
It’s derived from Cam16::hue
and
Cam16::colorfulness
.
b: T
The yellowness/blueness (b’) of the color.
It’s derived from Cam16::hue
and
Cam16::colorfulness
.
Implementations§
source§impl<T> Cam16UcsJab<T>
impl<T> Cam16UcsJab<T>
sourcepub const fn new(lightness: T, a: T, b: T) -> Cam16UcsJab<T>
pub const fn new(lightness: T, a: T, b: T) -> Cam16UcsJab<T>
Create a CAM16-UCS J’ a’ b’ color.
sourcepub fn into_components(self) -> (T, T, T)
pub fn into_components(self) -> (T, T, T)
Convert to a (J', a', b')
tuple.
sourcepub fn from_components(_: (T, T, T)) -> Cam16UcsJab<T>
pub fn from_components(_: (T, T, T)) -> Cam16UcsJab<T>
Convert from a (J', a', b')
tuple.
source§impl<T> Cam16UcsJab<T>
impl<T> Cam16UcsJab<T>
sourcepub fn min_lightness() -> T
pub fn min_lightness() -> T
Return the lightness
value minimum.
sourcepub fn max_lightness() -> T
pub fn max_lightness() -> T
Return the lightness
value maximum.
sourcepub fn min_srgb_a() -> T
pub fn min_srgb_a() -> T
Return an a
value minimum that includes the sRGB gamut.
This is entirely arbitrary and only for use in random generation. Colorfulness doesn't have a well defined upper bound, which makes a' unbounded.
sourcepub fn max_srgb_a() -> T
pub fn max_srgb_a() -> T
Return an a
value maximum that includes the sRGB gamut.
This is entirely arbitrary and only for use in random generation. Colorfulness doesn't have a well defined upper bound, which makes a' unbounded.
sourcepub fn min_srgb_b() -> T
pub fn min_srgb_b() -> T
Return a b
value minimum that includes the sRGB gamut.
This is entirely arbitrary and only for use in random generation. Colorfulness doesn't have a well defined upper bound, which makes b' unbounded.
sourcepub fn max_srgb_b() -> T
pub fn max_srgb_b() -> T
Return a b
value maximum that includes the sRGB gamut.
This is entirely arbitrary and only for use in random generation. Colorfulness doesn't have a well defined upper bound, which makes b' unbounded.
source§impl<T> Cam16UcsJab<&T>
impl<T> Cam16UcsJab<&T>
sourcepub fn copied(&self) -> Cam16UcsJab<T>where
T: Copy,
pub fn copied(&self) -> Cam16UcsJab<T>where
T: Copy,
Get an owned, copied version of this color.
sourcepub fn cloned(&self) -> Cam16UcsJab<T>where
T: Clone,
pub fn cloned(&self) -> Cam16UcsJab<T>where
T: Clone,
Get an owned, cloned version of this color.
source§impl<T> Cam16UcsJab<&mut T>
impl<T> Cam16UcsJab<&mut T>
sourcepub fn set(&mut self, value: Cam16UcsJab<T>)
pub fn set(&mut self, value: Cam16UcsJab<T>)
Update this color with new values.
sourcepub fn as_refs(&self) -> Cam16UcsJab<&T>
pub fn as_refs(&self) -> Cam16UcsJab<&T>
Borrow this color’s components as shared references.
sourcepub fn copied(&self) -> Cam16UcsJab<T>where
T: Copy,
pub fn copied(&self) -> Cam16UcsJab<T>where
T: Copy,
Get an owned, copied version of this color.
sourcepub fn cloned(&self) -> Cam16UcsJab<T>where
T: Clone,
pub fn cloned(&self) -> Cam16UcsJab<T>where
T: Clone,
Get an owned, cloned version of this color.
source§impl<C> Cam16UcsJab<C>
impl<C> Cam16UcsJab<C>
sourcepub fn iter<'a>(&'a self) -> <&'a Cam16UcsJab<C> as IntoIterator>::IntoIterwhere
&'a Cam16UcsJab<C>: IntoIterator,
pub fn iter<'a>(&'a self) -> <&'a Cam16UcsJab<C> as IntoIterator>::IntoIterwhere
&'a Cam16UcsJab<C>: IntoIterator,
Return an iterator over the colors in the wrapped collections.
sourcepub fn iter_mut<'a>(
&'a mut self,
) -> <&'a mut Cam16UcsJab<C> as IntoIterator>::IntoIterwhere
&'a mut Cam16UcsJab<C>: IntoIterator,
pub fn iter_mut<'a>(
&'a mut self,
) -> <&'a mut Cam16UcsJab<C> as IntoIterator>::IntoIterwhere
&'a mut Cam16UcsJab<C>: IntoIterator,
Return an iterator that allows modifying the colors in the wrapped collections.
sourcepub fn get<'a, I, T>(
&'a self,
index: I,
) -> Option<Cam16UcsJab<&'a <I as SliceIndex<[T]>>::Output>>
pub fn get<'a, I, T>( &'a self, index: I, ) -> Option<Cam16UcsJab<&'a <I as SliceIndex<[T]>>::Output>>
Get a color, or slice of colors, with references to the components at index
. See slice::get
for details.
sourcepub fn get_mut<'a, I, T>(
&'a mut self,
index: I,
) -> Option<Cam16UcsJab<&'a mut <I as SliceIndex<[T]>>::Output>>
pub fn get_mut<'a, I, T>( &'a mut self, index: I, ) -> Option<Cam16UcsJab<&'a mut <I as SliceIndex<[T]>>::Output>>
Get a color, or slice of colors, that allows modifying the components at index
. See slice::get_mut
for details.
source§impl<T> Cam16UcsJab<Vec<T>>
impl<T> Cam16UcsJab<Vec<T>>
sourcepub fn with_capacity(capacity: usize) -> Cam16UcsJab<Vec<T>>
pub fn with_capacity(capacity: usize) -> Cam16UcsJab<Vec<T>>
Create a struct of vectors with a minimum capacity. See Vec::with_capacity
for details.
sourcepub fn push(&mut self, value: Cam16UcsJab<T>)
pub fn push(&mut self, value: Cam16UcsJab<T>)
Push an additional color’s components onto the component vectors. See Vec::push
for details.
sourcepub fn pop(&mut self) -> Option<Cam16UcsJab<T>>
pub fn pop(&mut self) -> Option<Cam16UcsJab<T>>
Pop a color’s components from the component vectors. See Vec::pop
for details.
sourcepub fn clear(&mut self)
pub fn clear(&mut self)
Clear the component vectors. See Vec::clear
for details.
Trait Implementations§
source§impl<T> AbsDiffEq for Cam16UcsJab<T>
impl<T> AbsDiffEq for Cam16UcsJab<T>
source§fn default_epsilon() -> <Cam16UcsJab<T> as AbsDiffEq>::Epsilon
fn default_epsilon() -> <Cam16UcsJab<T> as AbsDiffEq>::Epsilon
source§fn abs_diff_eq(
&self,
other: &Cam16UcsJab<T>,
epsilon: <T as AbsDiffEq>::Epsilon,
) -> bool
fn abs_diff_eq( &self, other: &Cam16UcsJab<T>, epsilon: <T as AbsDiffEq>::Epsilon, ) -> bool
source§fn abs_diff_ne(
&self,
other: &Cam16UcsJab<T>,
epsilon: <T as AbsDiffEq>::Epsilon,
) -> bool
fn abs_diff_ne( &self, other: &Cam16UcsJab<T>, epsilon: <T as AbsDiffEq>::Epsilon, ) -> bool
AbsDiffEq::abs_diff_eq
.source§impl<T> Add<T> for Cam16UcsJab<T>
impl<T> Add<T> for Cam16UcsJab<T>
source§impl<T> Add for Cam16UcsJab<T>where
T: Add<Output = T>,
impl<T> Add for Cam16UcsJab<T>where
T: Add<Output = T>,
source§type Output = Cam16UcsJab<T>
type Output = Cam16UcsJab<T>
+
operator.source§fn add(self, other: Cam16UcsJab<T>) -> <Cam16UcsJab<T> as Add>::Output
fn add(self, other: Cam16UcsJab<T>) -> <Cam16UcsJab<T> as Add>::Output
+
operation. Read moresource§impl<T> AddAssign<T> for Cam16UcsJab<T>
impl<T> AddAssign<T> for Cam16UcsJab<T>
source§fn add_assign(&mut self, c: T)
fn add_assign(&mut self, c: T)
+=
operation. Read moresource§impl<T> AddAssign for Cam16UcsJab<T>where
T: AddAssign,
impl<T> AddAssign for Cam16UcsJab<T>where
T: AddAssign,
source§fn add_assign(&mut self, other: Cam16UcsJab<T>)
fn add_assign(&mut self, other: Cam16UcsJab<T>)
+=
operation. Read moresource§impl<T> ArrayCast for Cam16UcsJab<T>
impl<T> ArrayCast for Cam16UcsJab<T>
source§impl<T> AsMut<[T]> for Cam16UcsJab<T>
impl<T> AsMut<[T]> for Cam16UcsJab<T>
source§impl<T> AsMut<[T; 3]> for Cam16UcsJab<T>
impl<T> AsMut<[T; 3]> for Cam16UcsJab<T>
source§impl<T> AsRef<[T]> for Cam16UcsJab<T>
impl<T> AsRef<[T]> for Cam16UcsJab<T>
source§impl<T> AsRef<[T; 3]> for Cam16UcsJab<T>
impl<T> AsRef<[T; 3]> for Cam16UcsJab<T>
source§impl<T> Clamp for Cam16UcsJab<T>
impl<T> Clamp for Cam16UcsJab<T>
source§fn clamp(self) -> Cam16UcsJab<T>
fn clamp(self) -> Cam16UcsJab<T>
source§impl<T> ClampAssign for Cam16UcsJab<T>
impl<T> ClampAssign for Cam16UcsJab<T>
source§fn clamp_assign(&mut self)
fn clamp_assign(&mut self)
source§impl<T> Clone for Cam16UcsJab<T>where
T: Clone,
impl<T> Clone for Cam16UcsJab<T>where
T: Clone,
source§fn clone(&self) -> Cam16UcsJab<T>
fn clone(&self) -> Cam16UcsJab<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<T> Complementary for Cam16UcsJab<T>where
T: Neg<Output = T>,
impl<T> Complementary for Cam16UcsJab<T>where
T: Neg<Output = T>,
source§fn complementary(self) -> Cam16UcsJab<T>
fn complementary(self) -> Cam16UcsJab<T>
self
. Read moresource§impl<T> Debug for Cam16UcsJab<T>where
T: Debug,
impl<T> Debug for Cam16UcsJab<T>where
T: Debug,
source§impl<T> Default for Cam16UcsJab<T>where
T: Default,
impl<T> Default for Cam16UcsJab<T>where
T: Default,
source§fn default() -> Cam16UcsJab<T>
fn default() -> Cam16UcsJab<T>
source§impl<T> DeltaE for Cam16UcsJab<T>
impl<T> DeltaE for Cam16UcsJab<T>
source§fn delta_e(self, other: Cam16UcsJab<T>) -> <Cam16UcsJab<T> as DeltaE>::Scalar
fn delta_e(self, other: Cam16UcsJab<T>) -> <Cam16UcsJab<T> as DeltaE>::Scalar
self
and other
,
according to the color space’s specification.source§impl<'de, T> Deserialize<'de> for Cam16UcsJab<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for Cam16UcsJab<T>where
T: Deserialize<'de>,
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Cam16UcsJab<T>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Cam16UcsJab<T>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
source§impl<T> Div<T> for Cam16UcsJab<T>
impl<T> Div<T> for Cam16UcsJab<T>
source§impl<T> Div for Cam16UcsJab<T>where
T: Div<Output = T>,
impl<T> Div for Cam16UcsJab<T>where
T: Div<Output = T>,
source§type Output = Cam16UcsJab<T>
type Output = Cam16UcsJab<T>
/
operator.source§fn div(self, other: Cam16UcsJab<T>) -> <Cam16UcsJab<T> as Div>::Output
fn div(self, other: Cam16UcsJab<T>) -> <Cam16UcsJab<T> as Div>::Output
/
operation. Read moresource§impl<T> DivAssign<T> for Cam16UcsJab<T>
impl<T> DivAssign<T> for Cam16UcsJab<T>
source§fn div_assign(&mut self, c: T)
fn div_assign(&mut self, c: T)
/=
operation. Read moresource§impl<T> DivAssign for Cam16UcsJab<T>where
T: DivAssign,
impl<T> DivAssign for Cam16UcsJab<T>where
T: DivAssign,
source§fn div_assign(&mut self, other: Cam16UcsJab<T>)
fn div_assign(&mut self, other: Cam16UcsJab<T>)
/=
operation. Read moresource§impl<T> EuclideanDistance for Cam16UcsJab<T>
impl<T> EuclideanDistance for Cam16UcsJab<T>
source§fn distance_squared(
self,
other: Cam16UcsJab<T>,
) -> <Cam16UcsJab<T> as EuclideanDistance>::Scalar
fn distance_squared( self, other: Cam16UcsJab<T>, ) -> <Cam16UcsJab<T> as EuclideanDistance>::Scalar
source§impl<T, C> Extend<Cam16UcsJab<T>> for Cam16UcsJab<C>where
C: Extend<T>,
impl<T, C> Extend<Cam16UcsJab<T>> for Cam16UcsJab<C>where
C: Extend<T>,
source§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = Cam16UcsJab<T>>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = Cam16UcsJab<T>>,
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl<'a, T> From<&'a [T; 3]> for &'a Cam16UcsJab<T>
impl<'a, T> From<&'a [T; 3]> for &'a Cam16UcsJab<T>
source§fn from(array: &'a [T; 3]) -> &'a Cam16UcsJab<T>
fn from(array: &'a [T; 3]) -> &'a Cam16UcsJab<T>
source§impl<'a, T> From<&'a Cam16UcsJab<T>> for &'a [T]
impl<'a, T> From<&'a Cam16UcsJab<T>> for &'a [T]
source§fn from(color: &'a Cam16UcsJab<T>) -> &'a [T]
fn from(color: &'a Cam16UcsJab<T>) -> &'a [T]
source§impl<'a, T> From<&'a mut [T; 3]> for &'a mut Cam16UcsJab<T>
impl<'a, T> From<&'a mut [T; 3]> for &'a mut Cam16UcsJab<T>
source§fn from(array: &'a mut [T; 3]) -> &'a mut Cam16UcsJab<T>
fn from(array: &'a mut [T; 3]) -> &'a mut Cam16UcsJab<T>
source§impl<'a, T> From<&'a mut Cam16UcsJab<T>> for &'a mut [T]
impl<'a, T> From<&'a mut Cam16UcsJab<T>> for &'a mut [T]
source§fn from(color: &'a mut Cam16UcsJab<T>) -> &'a mut [T]
fn from(color: &'a mut Cam16UcsJab<T>) -> &'a mut [T]
source§impl<T, V, const N: usize> From<[Cam16UcsJab<T>; N]> for Cam16UcsJab<V>
impl<T, V, const N: usize> From<[Cam16UcsJab<T>; N]> for Cam16UcsJab<V>
source§fn from(colors: [Cam16UcsJab<T>; N]) -> Cam16UcsJab<V>
fn from(colors: [Cam16UcsJab<T>; N]) -> Cam16UcsJab<V>
source§impl<T> From<[T; 3]> for Cam16UcsJab<T>
impl<T> From<[T; 3]> for Cam16UcsJab<T>
source§fn from(array: [T; 3]) -> Cam16UcsJab<T>
fn from(array: [T; 3]) -> Cam16UcsJab<T>
source§impl<T> From<(T, T, T)> for Cam16UcsJab<T>
impl<T> From<(T, T, T)> for Cam16UcsJab<T>
source§fn from(components: (T, T, T)) -> Cam16UcsJab<T>
fn from(components: (T, T, T)) -> Cam16UcsJab<T>
source§impl<T> From<PreAlpha<Cam16UcsJab<T>>> for Cam16UcsJab<T>where
Cam16UcsJab<T>: Premultiply<Scalar = T>,
impl<T> From<PreAlpha<Cam16UcsJab<T>>> for Cam16UcsJab<T>where
Cam16UcsJab<T>: Premultiply<Scalar = T>,
source§fn from(premultiplied: PreAlpha<Cam16UcsJab<T>>) -> Cam16UcsJab<T>
fn from(premultiplied: PreAlpha<Cam16UcsJab<T>>) -> Cam16UcsJab<T>
source§impl<T, _C, _A> FromColorUnclamped<Alpha<_C, _A>> for Cam16UcsJab<T>where
_C: IntoColorUnclamped<Cam16UcsJab<T>>,
impl<T, _C, _A> FromColorUnclamped<Alpha<_C, _A>> for Cam16UcsJab<T>where
_C: IntoColorUnclamped<Cam16UcsJab<T>>,
source§fn from_color_unclamped(color: Alpha<_C, _A>) -> Cam16UcsJab<T>
fn from_color_unclamped(color: Alpha<_C, _A>) -> Cam16UcsJab<T>
source§impl<T> FromColorUnclamped<Cam16<T>> for Cam16UcsJab<T>
impl<T> FromColorUnclamped<Cam16<T>> for Cam16UcsJab<T>
source§fn from_color_unclamped(color: Cam16<T>) -> Cam16UcsJab<T>
fn from_color_unclamped(color: Cam16<T>) -> Cam16UcsJab<T>
source§impl<T> FromColorUnclamped<Cam16Jmh<T>> for Cam16UcsJab<T>
impl<T> FromColorUnclamped<Cam16Jmh<T>> for Cam16UcsJab<T>
source§fn from_color_unclamped(color: Cam16Jmh<T>) -> Cam16UcsJab<T>
fn from_color_unclamped(color: Cam16Jmh<T>) -> Cam16UcsJab<T>
source§impl<T> FromColorUnclamped<Cam16UcsJab<T>> for Cam16Jmh<T>
impl<T> FromColorUnclamped<Cam16UcsJab<T>> for Cam16Jmh<T>
source§fn from_color_unclamped(color: Cam16UcsJab<T>) -> Cam16Jmh<T>
fn from_color_unclamped(color: Cam16UcsJab<T>) -> Cam16Jmh<T>
source§impl<T> FromColorUnclamped<Cam16UcsJab<T>> for Cam16UcsJab<T>
impl<T> FromColorUnclamped<Cam16UcsJab<T>> for Cam16UcsJab<T>
source§fn from_color_unclamped(val: Cam16UcsJab<T>) -> Cam16UcsJab<T>
fn from_color_unclamped(val: Cam16UcsJab<T>) -> Cam16UcsJab<T>
source§impl<T> FromColorUnclamped<Cam16UcsJab<T>> for Cam16UcsJmh<T>
impl<T> FromColorUnclamped<Cam16UcsJab<T>> for Cam16UcsJmh<T>
source§fn from_color_unclamped(val: Cam16UcsJab<T>) -> Cam16UcsJmh<T>
fn from_color_unclamped(val: Cam16UcsJab<T>) -> Cam16UcsJmh<T>
source§impl<T> FromColorUnclamped<Cam16UcsJmh<T>> for Cam16UcsJab<T>
impl<T> FromColorUnclamped<Cam16UcsJmh<T>> for Cam16UcsJab<T>
source§fn from_color_unclamped(val: Cam16UcsJmh<T>) -> Cam16UcsJab<T>
fn from_color_unclamped(val: Cam16UcsJmh<T>) -> Cam16UcsJab<T>
source§impl<T, C> FromIterator<Cam16UcsJab<T>> for Cam16UcsJab<C>
impl<T, C> FromIterator<Cam16UcsJab<T>> for Cam16UcsJab<C>
source§fn from_iter<I>(iter: I) -> Cam16UcsJab<C>where
I: IntoIterator<Item = Cam16UcsJab<T>>,
fn from_iter<I>(iter: I) -> Cam16UcsJab<C>where
I: IntoIterator<Item = Cam16UcsJab<T>>,
source§impl<T> HasBoolMask for Cam16UcsJab<T>where
T: HasBoolMask,
impl<T> HasBoolMask for Cam16UcsJab<T>where
T: HasBoolMask,
source§type Mask = <T as HasBoolMask>::Mask
type Mask = <T as HasBoolMask>::Mask
Self
values.source§impl<T> HyAb for Cam16UcsJab<T>
impl<T> HyAb for Cam16UcsJab<T>
source§fn hybrid_distance(
self,
other: Cam16UcsJab<T>,
) -> <Cam16UcsJab<T> as HyAb>::Scalar
fn hybrid_distance( self, other: Cam16UcsJab<T>, ) -> <Cam16UcsJab<T> as HyAb>::Scalar
source§impl<T> ImprovedDeltaE for Cam16UcsJab<T>where
Cam16UcsJab<T>: EuclideanDistance<Scalar = T> + DeltaE<Scalar = T>,
T: Real + Mul<Output = T> + Powf,
impl<T> ImprovedDeltaE for Cam16UcsJab<T>where
Cam16UcsJab<T>: EuclideanDistance<Scalar = T> + DeltaE<Scalar = T>,
T: Real + Mul<Output = T> + Powf,
source§fn improved_delta_e(
self,
other: Cam16UcsJab<T>,
) -> <Cam16UcsJab<T> as DeltaE>::Scalar
fn improved_delta_e( self, other: Cam16UcsJab<T>, ) -> <Cam16UcsJab<T> as DeltaE>::Scalar
self
and other
, according to the color space’s specification and later
improvements by Huang et al.source§impl<'a, 'b, T> IntoIterator for &'a Cam16UcsJab<&'b [T]>
impl<'a, 'b, T> IntoIterator for &'a Cam16UcsJab<&'b [T]>
source§impl<'a, 'b, T> IntoIterator for &'a Cam16UcsJab<&'b mut [T]>
impl<'a, 'b, T> IntoIterator for &'a Cam16UcsJab<&'b mut [T]>
source§impl<'a, T, const N: usize> IntoIterator for &'a Cam16UcsJab<[T; N]>
impl<'a, T, const N: usize> IntoIterator for &'a Cam16UcsJab<[T; N]>
source§impl<'a, T> IntoIterator for &'a Cam16UcsJab<Box<[T]>>
impl<'a, T> IntoIterator for &'a Cam16UcsJab<Box<[T]>>
source§impl<'a, T> IntoIterator for &'a Cam16UcsJab<Vec<T>>
impl<'a, T> IntoIterator for &'a Cam16UcsJab<Vec<T>>
source§impl<'a, 'b, T> IntoIterator for &'a mut Cam16UcsJab<&'b mut [T]>
impl<'a, 'b, T> IntoIterator for &'a mut Cam16UcsJab<&'b mut [T]>
source§type Item = Cam16UcsJab<&'a mut T>
type Item = Cam16UcsJab<&'a mut T>
source§fn into_iter(
self,
) -> <&'a mut Cam16UcsJab<&'b mut [T]> as IntoIterator>::IntoIter
fn into_iter( self, ) -> <&'a mut Cam16UcsJab<&'b mut [T]> as IntoIterator>::IntoIter
source§impl<'a, T, const N: usize> IntoIterator for &'a mut Cam16UcsJab<[T; N]>
impl<'a, T, const N: usize> IntoIterator for &'a mut Cam16UcsJab<[T; N]>
source§type Item = Cam16UcsJab<&'a mut T>
type Item = Cam16UcsJab<&'a mut T>
source§fn into_iter(self) -> <&'a mut Cam16UcsJab<[T; N]> as IntoIterator>::IntoIter
fn into_iter(self) -> <&'a mut Cam16UcsJab<[T; N]> as IntoIterator>::IntoIter
source§impl<'a, T> IntoIterator for &'a mut Cam16UcsJab<Box<[T]>>where
T: 'a,
impl<'a, T> IntoIterator for &'a mut Cam16UcsJab<Box<[T]>>where
T: 'a,
source§type Item = Cam16UcsJab<&'a mut T>
type Item = Cam16UcsJab<&'a mut T>
source§fn into_iter(self) -> <&'a mut Cam16UcsJab<Box<[T]>> as IntoIterator>::IntoIter
fn into_iter(self) -> <&'a mut Cam16UcsJab<Box<[T]>> as IntoIterator>::IntoIter
source§impl<'a, T> IntoIterator for &'a mut Cam16UcsJab<Vec<T>>
impl<'a, T> IntoIterator for &'a mut Cam16UcsJab<Vec<T>>
source§type Item = Cam16UcsJab<&'a mut T>
type Item = Cam16UcsJab<&'a mut T>
source§fn into_iter(self) -> <&'a mut Cam16UcsJab<Vec<T>> as IntoIterator>::IntoIter
fn into_iter(self) -> <&'a mut Cam16UcsJab<Vec<T>> as IntoIterator>::IntoIter
source§impl<'a, T> IntoIterator for Cam16UcsJab<&'a [T]>
impl<'a, T> IntoIterator for Cam16UcsJab<&'a [T]>
source§impl<'a, T> IntoIterator for Cam16UcsJab<&'a mut [T]>
impl<'a, T> IntoIterator for Cam16UcsJab<&'a mut [T]>
source§type Item = Cam16UcsJab<&'a mut T>
type Item = Cam16UcsJab<&'a mut T>
source§fn into_iter(self) -> <Cam16UcsJab<&'a mut [T]> as IntoIterator>::IntoIter
fn into_iter(self) -> <Cam16UcsJab<&'a mut [T]> as IntoIterator>::IntoIter
source§impl<T, const N: usize> IntoIterator for Cam16UcsJab<[T; N]>
impl<T, const N: usize> IntoIterator for Cam16UcsJab<[T; N]>
source§impl<T> IntoIterator for Cam16UcsJab<Vec<T>>
impl<T> IntoIterator for Cam16UcsJab<Vec<T>>
source§impl<T> IsWithinBounds for Cam16UcsJab<T>where
T: PartialCmp + Real + Zero,
<T as HasBoolMask>::Mask: BitAnd<Output = <T as HasBoolMask>::Mask>,
impl<T> IsWithinBounds for Cam16UcsJab<T>where
T: PartialCmp + Real + Zero,
<T as HasBoolMask>::Mask: BitAnd<Output = <T as HasBoolMask>::Mask>,
source§fn is_within_bounds(&self) -> <T as HasBoolMask>::Mask
fn is_within_bounds(&self) -> <T as HasBoolMask>::Mask
source§impl<T> Lighten for Cam16UcsJab<T>where
T: Real + Zero + MinMax + Clamp + Arithmetics + PartialCmp + Clone,
<T as HasBoolMask>::Mask: LazySelect<T>,
impl<T> Lighten for Cam16UcsJab<T>where
T: Real + Zero + MinMax + Clamp + Arithmetics + PartialCmp + Clone,
<T as HasBoolMask>::Mask: LazySelect<T>,
source§fn lighten(self, factor: T) -> Cam16UcsJab<T>
fn lighten(self, factor: T) -> Cam16UcsJab<T>
source§fn lighten_fixed(self, amount: T) -> Cam16UcsJab<T>
fn lighten_fixed(self, amount: T) -> Cam16UcsJab<T>
source§impl<T> LightenAssign for Cam16UcsJab<T>where
T: Real + Zero + MinMax + ClampAssign + AddAssign + Arithmetics + PartialCmp + Clone,
<T as HasBoolMask>::Mask: LazySelect<T>,
impl<T> LightenAssign for Cam16UcsJab<T>where
T: Real + Zero + MinMax + ClampAssign + AddAssign + Arithmetics + PartialCmp + Clone,
<T as HasBoolMask>::Mask: LazySelect<T>,
source§fn lighten_assign(&mut self, factor: T)
fn lighten_assign(&mut self, factor: T)
source§fn lighten_fixed_assign(&mut self, amount: T)
fn lighten_fixed_assign(&mut self, amount: T)
source§impl<T> Mix for Cam16UcsJab<T>
impl<T> Mix for Cam16UcsJab<T>
source§fn mix(self, other: Cam16UcsJab<T>, factor: T) -> Cam16UcsJab<T>
fn mix(self, other: Cam16UcsJab<T>, factor: T) -> Cam16UcsJab<T>
factor
. Read moresource§impl<T> MixAssign for Cam16UcsJab<T>
impl<T> MixAssign for Cam16UcsJab<T>
source§fn mix_assign(&mut self, other: Cam16UcsJab<T>, factor: T)
fn mix_assign(&mut self, other: Cam16UcsJab<T>, factor: T)
factor
. Read moresource§impl<T> Mul<T> for Cam16UcsJab<T>
impl<T> Mul<T> for Cam16UcsJab<T>
source§impl<T> Mul for Cam16UcsJab<T>where
T: Mul<Output = T>,
impl<T> Mul for Cam16UcsJab<T>where
T: Mul<Output = T>,
source§type Output = Cam16UcsJab<T>
type Output = Cam16UcsJab<T>
*
operator.source§fn mul(self, other: Cam16UcsJab<T>) -> <Cam16UcsJab<T> as Mul>::Output
fn mul(self, other: Cam16UcsJab<T>) -> <Cam16UcsJab<T> as Mul>::Output
*
operation. Read moresource§impl<T> MulAssign<T> for Cam16UcsJab<T>
impl<T> MulAssign<T> for Cam16UcsJab<T>
source§fn mul_assign(&mut self, c: T)
fn mul_assign(&mut self, c: T)
*=
operation. Read moresource§impl<T> MulAssign for Cam16UcsJab<T>where
T: MulAssign,
impl<T> MulAssign for Cam16UcsJab<T>where
T: MulAssign,
source§fn mul_assign(&mut self, other: Cam16UcsJab<T>)
fn mul_assign(&mut self, other: Cam16UcsJab<T>)
*=
operation. Read moresource§impl<T> PartialEq for Cam16UcsJab<T>where
T: PartialEq,
impl<T> PartialEq for Cam16UcsJab<T>where
T: PartialEq,
source§impl<T> Premultiply for Cam16UcsJab<T>where
T: Stimulus + Zero + IsValidDivisor + Mul<Output = T> + Div<Output = T> + Real + Clone,
<T as HasBoolMask>::Mask: LazySelect<T> + Clone,
impl<T> Premultiply for Cam16UcsJab<T>where
T: Stimulus + Zero + IsValidDivisor + Mul<Output = T> + Div<Output = T> + Real + Clone,
<T as HasBoolMask>::Mask: LazySelect<T> + Clone,
source§fn premultiply(self, alpha: T) -> PreAlpha<Cam16UcsJab<T>>
fn premultiply(self, alpha: T) -> PreAlpha<Cam16UcsJab<T>>
source§fn unpremultiply(premultiplied: PreAlpha<Cam16UcsJab<T>>) -> (Cam16UcsJab<T>, T)
fn unpremultiply(premultiplied: PreAlpha<Cam16UcsJab<T>>) -> (Cam16UcsJab<T>, T)
source§impl<T> RelativeEq for Cam16UcsJab<T>
impl<T> RelativeEq for Cam16UcsJab<T>
source§fn default_max_relative() -> <T as AbsDiffEq>::Epsilon
fn default_max_relative() -> <T as AbsDiffEq>::Epsilon
source§fn relative_eq(
&self,
other: &Cam16UcsJab<T>,
epsilon: <T as AbsDiffEq>::Epsilon,
max_relative: <T as AbsDiffEq>::Epsilon,
) -> bool
fn relative_eq( &self, other: &Cam16UcsJab<T>, epsilon: <T as AbsDiffEq>::Epsilon, max_relative: <T as AbsDiffEq>::Epsilon, ) -> bool
source§fn relative_ne(
&self,
other: &Cam16UcsJab<T>,
epsilon: <T as AbsDiffEq>::Epsilon,
max_relative: <T as AbsDiffEq>::Epsilon,
) -> bool
fn relative_ne( &self, other: &Cam16UcsJab<T>, epsilon: <T as AbsDiffEq>::Epsilon, max_relative: <T as AbsDiffEq>::Epsilon, ) -> bool
RelativeEq::relative_eq
.source§impl<T> SaturatingAdd<T> for Cam16UcsJab<T>where
T: SaturatingAdd<Output = T> + Clone,
impl<T> SaturatingAdd<T> for Cam16UcsJab<T>where
T: SaturatingAdd<Output = T> + Clone,
source§type Output = Cam16UcsJab<T>
type Output = Cam16UcsJab<T>
source§fn saturating_add(self, c: T) -> <Cam16UcsJab<T> as SaturatingAdd<T>>::Output
fn saturating_add(self, c: T) -> <Cam16UcsJab<T> as SaturatingAdd<T>>::Output
self
and other
, but saturates instead of overflowing.source§impl<T> SaturatingAdd for Cam16UcsJab<T>where
T: SaturatingAdd<Output = T>,
impl<T> SaturatingAdd for Cam16UcsJab<T>where
T: SaturatingAdd<Output = T>,
source§type Output = Cam16UcsJab<T>
type Output = Cam16UcsJab<T>
source§fn saturating_add(
self,
other: Cam16UcsJab<T>,
) -> <Cam16UcsJab<T> as SaturatingAdd>::Output
fn saturating_add( self, other: Cam16UcsJab<T>, ) -> <Cam16UcsJab<T> as SaturatingAdd>::Output
self
and other
, but saturates instead of overflowing.source§impl<T> SaturatingSub<T> for Cam16UcsJab<T>where
T: SaturatingSub<Output = T> + Clone,
impl<T> SaturatingSub<T> for Cam16UcsJab<T>where
T: SaturatingSub<Output = T> + Clone,
source§type Output = Cam16UcsJab<T>
type Output = Cam16UcsJab<T>
source§fn saturating_sub(self, c: T) -> <Cam16UcsJab<T> as SaturatingSub<T>>::Output
fn saturating_sub(self, c: T) -> <Cam16UcsJab<T> as SaturatingSub<T>>::Output
self
and other
, but saturates instead of overflowing.source§impl<T> SaturatingSub for Cam16UcsJab<T>where
T: SaturatingSub<Output = T>,
impl<T> SaturatingSub for Cam16UcsJab<T>where
T: SaturatingSub<Output = T>,
source§type Output = Cam16UcsJab<T>
type Output = Cam16UcsJab<T>
source§fn saturating_sub(
self,
other: Cam16UcsJab<T>,
) -> <Cam16UcsJab<T> as SaturatingSub>::Output
fn saturating_sub( self, other: Cam16UcsJab<T>, ) -> <Cam16UcsJab<T> as SaturatingSub>::Output
self
and other
, but saturates instead of overflowing.source§impl<T> Serialize for Cam16UcsJab<T>where
T: Serialize,
impl<T> Serialize for Cam16UcsJab<T>where
T: Serialize,
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
source§impl<T> Sub<T> for Cam16UcsJab<T>
impl<T> Sub<T> for Cam16UcsJab<T>
source§impl<T> Sub for Cam16UcsJab<T>where
T: Sub<Output = T>,
impl<T> Sub for Cam16UcsJab<T>where
T: Sub<Output = T>,
source§type Output = Cam16UcsJab<T>
type Output = Cam16UcsJab<T>
-
operator.source§fn sub(self, other: Cam16UcsJab<T>) -> <Cam16UcsJab<T> as Sub>::Output
fn sub(self, other: Cam16UcsJab<T>) -> <Cam16UcsJab<T> as Sub>::Output
-
operation. Read moresource§impl<T> SubAssign<T> for Cam16UcsJab<T>
impl<T> SubAssign<T> for Cam16UcsJab<T>
source§fn sub_assign(&mut self, c: T)
fn sub_assign(&mut self, c: T)
-=
operation. Read moresource§impl<T> SubAssign for Cam16UcsJab<T>where
T: SubAssign,
impl<T> SubAssign for Cam16UcsJab<T>where
T: SubAssign,
source§fn sub_assign(&mut self, other: Cam16UcsJab<T>)
fn sub_assign(&mut self, other: Cam16UcsJab<T>)
-=
operation. Read moresource§impl<T> Tetradic for Cam16UcsJab<T>
impl<T> Tetradic for Cam16UcsJab<T>
source§fn tetradic(self) -> (Cam16UcsJab<T>, Cam16UcsJab<T>, Cam16UcsJab<T>)
fn tetradic(self) -> (Cam16UcsJab<T>, Cam16UcsJab<T>, Cam16UcsJab<T>)
source§impl<'a, T> TryFrom<&'a [T]> for &'a Cam16UcsJab<T>
impl<'a, T> TryFrom<&'a [T]> for &'a Cam16UcsJab<T>
source§impl<'a, T> TryFrom<&'a mut [T]> for &'a mut Cam16UcsJab<T>
impl<'a, T> TryFrom<&'a mut [T]> for &'a mut Cam16UcsJab<T>
source§impl<T> UlpsEq for Cam16UcsJab<T>
impl<T> UlpsEq for Cam16UcsJab<T>
source§fn default_max_ulps() -> u32
fn default_max_ulps() -> u32
source§fn ulps_eq(
&self,
other: &Cam16UcsJab<T>,
epsilon: <T as AbsDiffEq>::Epsilon,
max_ulps: u32,
) -> bool
fn ulps_eq( &self, other: &Cam16UcsJab<T>, epsilon: <T as AbsDiffEq>::Epsilon, max_ulps: u32, ) -> bool
source§fn ulps_ne(
&self,
other: &Cam16UcsJab<T>,
epsilon: <T as AbsDiffEq>::Epsilon,
max_ulps: u32,
) -> bool
fn ulps_ne( &self, other: &Cam16UcsJab<T>, epsilon: <T as AbsDiffEq>::Epsilon, max_ulps: u32, ) -> bool
UlpsEq::ulps_eq
.source§impl<T, _A> WithAlpha<_A> for Cam16UcsJab<T>where
_A: Stimulus,
impl<T, _A> WithAlpha<_A> for Cam16UcsJab<T>where
_A: Stimulus,
source§type Color = Cam16UcsJab<T>
type Color = Cam16UcsJab<T>
source§type WithAlpha = Alpha<Cam16UcsJab<T>, _A>
type WithAlpha = Alpha<Cam16UcsJab<T>, _A>
source§fn with_alpha(self, alpha: _A) -> <Cam16UcsJab<T> as WithAlpha<_A>>::WithAlpha
fn with_alpha(self, alpha: _A) -> <Cam16UcsJab<T> as WithAlpha<_A>>::WithAlpha
Self
already has a transparency, it is
overwritten. Read moresource§fn without_alpha(self) -> <Cam16UcsJab<T> as WithAlpha<_A>>::Color
fn without_alpha(self) -> <Cam16UcsJab<T> as WithAlpha<_A>>::Color
Self::Color
has
an internal transparency field, that field will be set to
A::max_intensity()
to make it opaque. Read moresource§fn split(self) -> (<Cam16UcsJab<T> as WithAlpha<_A>>::Color, _A)
fn split(self) -> (<Cam16UcsJab<T> as WithAlpha<_A>>::Color, _A)
impl<T> Copy for Cam16UcsJab<T>where
T: Copy,
impl<T> Eq for Cam16UcsJab<T>where
T: Eq,
Auto Trait Implementations§
impl<T> Freeze for Cam16UcsJab<T>where
T: Freeze,
impl<T> RefUnwindSafe for Cam16UcsJab<T>where
T: RefUnwindSafe,
impl<T> Send for Cam16UcsJab<T>where
T: Send,
impl<T> Sync for Cam16UcsJab<T>where
T: Sync,
impl<T> Unpin for Cam16UcsJab<T>where
T: Unpin,
impl<T> UnwindSafe for Cam16UcsJab<T>where
T: UnwindSafe,
Blanket Implementations§
source§impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere
T: Real + Zero + Arithmetics + Clone,
Swp: WhitePoint<T>,
Dwp: WhitePoint<T>,
D: AdaptFrom<S, Swp, Dwp, T>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for Swhere
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) -> Dwhere
M: TransformMatrix<T>,
fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<T>,
source§fn adapt_into(self) -> D
fn adapt_into(self) -> D
source§impl<T, Res> Apply<Res> for Twhere
T: ?Sized,
impl<T, Res> Apply<Res> for Twhere
T: ?Sized,
source§impl<T, C> ArraysFrom<C> for Twhere
C: IntoArrays<T>,
impl<T, C> ArraysFrom<C> for Twhere
C: IntoArrays<T>,
source§fn arrays_from(colors: C) -> T
fn arrays_from(colors: C) -> T
source§impl<T, C> ArraysInto<C> for Twhere
C: FromArrays<T>,
impl<T, C> ArraysInto<C> for Twhere
C: FromArrays<T>,
source§fn arrays_into(self) -> C
fn arrays_into(self) -> C
source§impl<C> BlendWith for C
impl<C> BlendWith for C
source§fn blend_with<F>(self, other: C, blend_function: F) -> C
fn blend_with<F>(self, other: C, blend_function: F) -> C
destination
, using
blend_function
. Anything that implements BlendFunction
is
acceptable, including functions and closures. Read moresource§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for Uwhere
T: FromCam16Unclamped<WpParam, U>,
impl<WpParam, T, U> Cam16IntoUnclamped<WpParam, T> for Uwhere
T: FromCam16Unclamped<WpParam, U>,
source§type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar
type Scalar = <T as FromCam16Unclamped<WpParam, U>>::Scalar
parameters
when converting.source§fn cam16_into_unclamped(
self,
parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar>,
) -> T
fn cam16_into_unclamped( self, parameters: BakedParameters<WpParam, <U as Cam16IntoUnclamped<WpParam, T>>::Scalar>, ) -> T
self
into C
, using the provided parameters.source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T, C> ComponentsFrom<C> for Twhere
C: IntoComponents<T>,
impl<T, C> ComponentsFrom<C> for Twhere
C: IntoComponents<T>,
source§fn components_from(colors: C) -> T
fn components_from(colors: C) -> T
source§impl<C> Compose for C
impl<C> Compose for C
source§fn over(self, other: C) -> C
fn over(self, other: C) -> C
self
over other
. This is the good old common alpha composition
equation.source§fn inside(self, other: C) -> C
fn inside(self, other: C) -> C
self
that overlaps the visible parts of
other
.source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> FromAngle<T> for T
impl<T> FromAngle<T> for T
source§fn from_angle(angle: T) -> T
fn from_angle(angle: T) -> T
angle
.source§impl<T, U> FromColor<T> for Uwhere
U: FromColorUnclamped<T> + Clamp,
impl<T, U> FromColor<T> for Uwhere
U: FromColorUnclamped<T> + Clamp,
source§fn from_color(t: T) -> U
fn from_color(t: T) -> U
source§impl<T, U> FromColorMut<U> for T
impl<T, U> FromColorMut<U> for T
source§fn from_color_mut(color: &mut U) -> FromColorMutGuard<'_, T, U>
fn from_color_mut(color: &mut U) -> FromColorMutGuard<'_, T, U>
source§impl<T, U> FromColorUnclampedMut<U> for Twhere
T: FromColorUnclamped<U> + ArrayCast + Clone,
U: FromColorUnclamped<T> + ArrayCast<Array = <T as ArrayCast>::Array> + Clone,
impl<T, U> FromColorUnclampedMut<U> for Twhere
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>
fn from_color_unclamped_mut( color: &mut U, ) -> FromColorUnclampedMutGuard<'_, T, U>
source§impl<T, U> FromStimulus<U> for Twhere
U: IntoStimulus<T>,
impl<T, U> FromStimulus<U> for Twhere
U: IntoStimulus<T>,
source§fn from_stimulus(other: U) -> T
fn from_stimulus(other: U) -> T
other
into Self
, while performing the appropriate scaling,
rounding and clamping.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
source§impl<T, U> IntoAngle<U> for Twhere
U: FromAngle<T>,
impl<T, U> IntoAngle<U> for Twhere
U: FromAngle<T>,
source§fn into_angle(self) -> U
fn into_angle(self) -> U
T
.source§impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for Uwhere
T: Cam16FromUnclamped<WpParam, U>,
impl<WpParam, T, U> IntoCam16Unclamped<WpParam, T> for Uwhere
T: Cam16FromUnclamped<WpParam, U>,
source§type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar
type Scalar = <T as Cam16FromUnclamped<WpParam, U>>::Scalar
parameters
when converting.source§fn into_cam16_unclamped(
self,
parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar>,
) -> T
fn into_cam16_unclamped( self, parameters: BakedParameters<WpParam, <U as IntoCam16Unclamped<WpParam, T>>::Scalar>, ) -> T
self
into C
, using the provided parameters.source§impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
source§fn into_color(self) -> U
fn into_color(self) -> U
source§impl<T, U> IntoColorMut<T> for U
impl<T, U> IntoColorMut<T> for U
source§fn into_color_mut(&mut self) -> FromColorMutGuard<'_, T, U>
fn into_color_mut(&mut self) -> FromColorMutGuard<'_, T, U>
source§impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
source§fn into_color_unclamped(self) -> U
fn into_color_unclamped(self) -> U
source§impl<T, U> IntoColorUnclampedMut<T> for U
impl<T, U> IntoColorUnclampedMut<T> for U
source§fn into_color_unclamped_mut(&mut self) -> FromColorUnclampedMutGuard<'_, T, U>
fn into_color_unclamped_mut(&mut self) -> FromColorUnclampedMutGuard<'_, T, U>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> IntoStimulus<T> for T
impl<T> IntoStimulus<T> for T
source§fn into_stimulus(self) -> T
fn into_stimulus(self) -> T
self
into T
, while performing the appropriate scaling,
rounding and clamping.source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian()
.source§impl<T> ToHex for T
impl<T> ToHex for T
source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
self
into the result. Lower case
letters are used (e.g. f9b4ca
)source§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
self
into the result. Upper case
letters are used (e.g. F9B4CA
)source§impl<T, C> TryComponentsInto<C> for Twhere
C: TryFromComponents<T>,
impl<T, C> TryComponentsInto<C> for Twhere
C: TryFromComponents<T>,
source§type Error = <C as TryFromComponents<T>>::Error
type Error = <C as TryFromComponents<T>>::Error
try_into_colors
fails to cast.source§fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>
fn try_components_into(self) -> Result<C, <T as TryComponentsInto<C>>::Error>
source§impl<T, U> TryFromColor<T> for U
impl<T, U> TryFromColor<T> for U
source§fn try_from_color(t: T) -> Result<U, OutOfBounds<U>>
fn try_from_color(t: T) -> Result<U, OutOfBounds<U>>
OutOfBounds
error is returned which contains
the unclamped color. Read moresource§impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
source§fn try_into_color(self) -> Result<U, OutOfBounds<U>>
fn try_into_color(self) -> Result<U, OutOfBounds<U>>
OutOfBounds
error is returned which contains
the unclamped color. Read more