//! CIE xy chromaticities stored as millionths. Identity metadata only.
/// CIE xy pair in millionths (`1_000_000` = 1.0).
////// These numbers document a space. The target crate must not invert, adapt,
/// or otherwise derive a matrix from them.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]pubstructChromaticities{/// CIE x × 1_000_000.
pubx_millionths:u32,
/// CIE y × 1_000_000.
puby_millionths:u32,
}implChromaticities{/// Construct from millionths.
#[must_use]pubconstfnfrom_millionths(x_millionths:u32, y_millionths:u32)->Self{Self{
x_millionths,
y_millionths,}}}