pub struct Chromaticities {
pub red: Vec2<f32>,
pub green: Vec2<f32>,
pub blue: Vec2<f32>,
pub white: Vec2<f32>,
}
Expand description
The color space of the pixels.
If a file doesn’t have a chromaticities attribute, display software
should assume that the file’s primaries and the white point match Rec. ITU-R BT.709-3
.
Fields
red: Vec2<f32>
“Red” location on the CIE XY chromaticity diagram.
green: Vec2<f32>
“Green” location on the CIE XY chromaticity diagram.
blue: Vec2<f32>
“Blue” location on the CIE XY chromaticity diagram.
white: Vec2<f32>
“White” location on the CIE XY chromaticity diagram.
Implementations
sourceimpl Chromaticities
impl Chromaticities
Trait Implementations
sourceimpl Clone for Chromaticities
impl Clone for Chromaticities
sourcefn clone(&self) -> Chromaticities
fn clone(&self) -> Chromaticities
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Chromaticities
impl Debug for Chromaticities
sourceimpl PartialEq<Chromaticities> for Chromaticities
impl PartialEq<Chromaticities> for Chromaticities
sourcefn eq(&self, other: &Chromaticities) -> bool
fn eq(&self, other: &Chromaticities) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Chromaticities) -> bool
fn ne(&self, other: &Chromaticities) -> bool
This method tests for !=
.
impl Copy for Chromaticities
impl StructuralPartialEq for Chromaticities
Auto Trait Implementations
impl RefUnwindSafe for Chromaticities
impl Send for Chromaticities
impl Sync for Chromaticities
impl Unpin for Chromaticities
impl UnwindSafe for Chromaticities
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more