#[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 copy 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 ColorSpaceSignatureExt for ColorSpaceSignature

source§

fn channels(self) -> u32

Returns channel count for a given color space. Read more
source§

fn pixel_type(self) -> PixelType

Converts from ICC color space notation (LCMS PDF Table 10) to Little CMS color space notation (LCMS PDF Table 36).
source§

impl Debug for ColorSpaceSignature

source§

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

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

impl Hash for ColorSpaceSignature

source§

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

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ColorSpaceSignature

source§

impl Eq for ColorSpaceSignature

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> 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,

§

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>,

§

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>,

§

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.