Enum CicpColorPrimaries

Source
#[non_exhaustive]
#[repr(u8)]
pub enum CicpColorPrimaries { SRgb = 1, Unspecified = 2, RgbM = 4, RgbB = 5, Bt601 = 6, Rgb240m = 7, GenericFilm = 8, Rgb2020 = 9, Xyz = 10, SmpteRp431 = 11, SmpteRp432 = 12, Industry22 = 22, }
Expand description

Defines the exact color of red, green, blue primary colors.

Each set defines the CIE 1931 XYZ (2°) color space coordinates of the primary colors and an illuminant/whitepoint under which those colors are viewed.

Refer to Rec H.273 Table 2.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

SRgb = 1

ITU-R BT.709-6

§

Unspecified = 2

Explicitly, the color space is not determined.

§

RgbM = 4

ITU-R BT.470-6 System M

§

RgbB = 5

ITU-R BT.470-6 System B, G

§

Bt601 = 6

SMPTE 170M functionally equivalent to 7

§

Rgb240m = 7

SMPTE 240M functionally equivalent to 6

§

GenericFilm = 8

Generic film (colour filters using Illuminant C)

§

Rgb2020 = 9

Rec. ITU-R BT.2020-2 Rec. ITU-R BT.2100-2

§

Xyz = 10

SMPTE ST 428-1

(CIE 1931 XYZ as in ISO/CIE 11664-1)

§

SmpteRp431 = 11

SMPTE RP 431-2 (aka. DCI P3)

§

SmpteRp432 = 12

SMPTE EG 432-1, DCI P3 variant with the D65 whitepoint (matching sRGB and BT.2020)

§

Industry22 = 22

Corresponds to value 22 but

No corresponding industry specification identified

But moxcms identifies it as EBU Tech 3213-E: https://tech.ebu.ch/docs/tech/tech3213.pdf

However, there are some differences in the second digit of red’s CIE 1931 and the precision is only 2 digits whereas CICP names three; so unsure if this is fully accurate as the actual source material.

Trait Implementations§

Source§

impl Clone for CicpColorPrimaries

Source§

fn clone(&self) -> CicpColorPrimaries

Returns a duplicate 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 Debug for CicpColorPrimaries

Source§

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

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

impl Hash for CicpColorPrimaries

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for CicpColorPrimaries

Source§

fn eq(&self, other: &CicpColorPrimaries) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for CicpColorPrimaries

Source§

impl Eq for CicpColorPrimaries

Source§

impl StructuralPartialEq for CicpColorPrimaries

Auto Trait Implementations§

Blanket Implementations§

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> 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<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

Source§

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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> TryInto<U> for T
where U: TryFrom<T>,

Source§

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.