Skip to main content

ColorSpaceSignature

Enum ColorSpaceSignature 

Source
#[non_exhaustive]
#[repr(u32)]
pub enum ColorSpaceSignature {
Show 43 variants XYZData = 1_482_250_784, LabData = 1_281_450_528, LuvData = 1_282_766_368, YCbCrData = 1_497_588_338, YxyData = 1_501_067_552, RgbData = 1_380_401_696, GrayData = 1_196_573_017, HsvData = 1_213_421_088, HlsData = 1_212_961_568, CmykData = 1_129_142_603, CmyData = 1_129_142_560, MCH1Data = 1_296_255_025, MCH2Data = 1_296_255_026, MCH3Data = 1_296_255_027, MCH4Data = 1_296_255_028, MCH5Data = 1_296_255_029, MCH6Data = 1_296_255_030, MCH7Data = 1_296_255_031, MCH8Data = 1_296_255_032, MCH9Data = 1_296_255_033, MCHAData = 1_296_255_041, MCHBData = 1_296_255_042, MCHCData = 1_296_255_043, MCHDData = 1_296_255_044, MCHEData = 1_296_255_045, MCHFData = 1_296_255_046, NamedData = 1_852_662_636, Sig1colorData = 826_494_034, Sig2colorData = 843_271_250, Sig3colorData = 860_048_466, Sig4colorData = 876_825_682, Sig5colorData = 893_602_898, Sig6colorData = 910_380_114, Sig7colorData = 927_157_330, Sig8colorData = 943_934_546, Sig9colorData = 960_711_762, Sig10colorData = 1_094_929_490, Sig11colorData = 1_111_706_706, Sig12colorData = 1_128_483_922, Sig13colorData = 1_145_261_138, Sig14colorData = 1_162_038_354, Sig15colorData = 1_178_815_570, LuvKData = 1_282_766_411,
}

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.
§

XYZData = 1_482_250_784

’XYZ ’

§

LabData = 1_281_450_528

’Lab ’

§

LuvData = 1_282_766_368

’Luv ’

§

YCbCrData = 1_497_588_338

‘YCbr’

§

YxyData = 1_501_067_552

’Yxy ’

§

RgbData = 1_380_401_696

’RGB ’

§

GrayData = 1_196_573_017

‘GRAY’

§

HsvData = 1_213_421_088

’HSV ’

§

HlsData = 1_212_961_568

’HLS ’

§

CmykData = 1_129_142_603

‘CMYK’

§

CmyData = 1_129_142_560

’CMY ’

§

MCH1Data = 1_296_255_025

‘MCH1’

§

MCH2Data = 1_296_255_026

‘MCH2’

§

MCH3Data = 1_296_255_027

‘MCH3’

§

MCH4Data = 1_296_255_028

‘MCH4’

§

MCH5Data = 1_296_255_029

‘MCH5’

§

MCH6Data = 1_296_255_030

‘MCH6’

§

MCH7Data = 1_296_255_031

‘MCH7’

§

MCH8Data = 1_296_255_032

‘MCH8’

§

MCH9Data = 1_296_255_033

‘MCH9’

§

MCHAData = 1_296_255_041

‘MCHA’

§

MCHBData = 1_296_255_042

‘MCHB’

§

MCHCData = 1_296_255_043

‘MCHC’

§

MCHDData = 1_296_255_044

‘MCHD’

§

MCHEData = 1_296_255_045

‘MCHE’

§

MCHFData = 1_296_255_046

‘MCHF’

§

NamedData = 1_852_662_636

‘nmcl’

§

Sig1colorData = 826_494_034

‘1CLR’

§

Sig2colorData = 843_271_250

‘2CLR’

§

Sig3colorData = 860_048_466

‘3CLR’

§

Sig4colorData = 876_825_682

‘4CLR’

§

Sig5colorData = 893_602_898

‘5CLR’

§

Sig6colorData = 910_380_114

‘6CLR’

§

Sig7colorData = 927_157_330

‘7CLR’

§

Sig8colorData = 943_934_546

‘8CLR’

§

Sig9colorData = 960_711_762

‘9CLR’

§

Sig10colorData = 1_094_929_490

‘ACLR’

§

Sig11colorData = 1_111_706_706

‘BCLR’

§

Sig12colorData = 1_128_483_922

‘CCLR’

§

Sig13colorData = 1_145_261_138

‘DCLR’

§

Sig14colorData = 1_162_038_354

‘ECLR’

§

Sig15colorData = 1_178_815_570

‘FCLR’

§

LuvKData = 1_282_766_411

‘LuvK’

Trait Implementations§

Source§

impl Clone for ColorSpaceSignature

Source§

fn clone(&self) -> ColorSpaceSignature

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for ColorSpaceSignature

Source§

impl Debug for ColorSpaceSignature

Source§

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

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

impl Eq for ColorSpaceSignature

Source§

impl Hash for ColorSpaceSignature

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 ColorSpaceSignature

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · 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 StructuralPartialEq for ColorSpaceSignature

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.