#[non_exhaustive]#[repr(u32)]pub enum ColorimetricIntentImageState {
SceneColorimetryEstimates = 1_935_896_421,
SceneAppearanceEstimates = 1_935_765_605,
FocalPlaneColorimetryEstimates = 1_718_641_509,
ReflectionHardcopyOriginalColorimetry = 1_919_446_883,
ReflectionPrintOutputColorimetry = 1_919_971_171,
}
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.
SceneColorimetryEstimates = 1_935_896_421
‘scoe’
SceneAppearanceEstimates = 1_935_765_605
‘sape’
FocalPlaneColorimetryEstimates = 1_718_641_509
‘fpce’
ReflectionHardcopyOriginalColorimetry = 1_919_446_883
‘rhoc’
ReflectionPrintOutputColorimetry = 1_919_971_171
‘rpoc’
Trait Implementations§
source§impl Clone for ColorimetricIntentImageState
impl Clone for ColorimetricIntentImageState
source§fn clone(&self) -> ColorimetricIntentImageState
fn clone(&self) -> ColorimetricIntentImageState
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ColorimetricIntentImageState
impl Debug for ColorimetricIntentImageState
source§impl Hash for ColorimetricIntentImageState
impl Hash for ColorimetricIntentImageState
source§impl PartialEq for ColorimetricIntentImageState
impl PartialEq for ColorimetricIntentImageState
source§fn eq(&self, other: &ColorimetricIntentImageState) -> bool
fn eq(&self, other: &ColorimetricIntentImageState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ColorimetricIntentImageState
impl Eq for ColorimetricIntentImageState
impl StructuralPartialEq for ColorimetricIntentImageState
Auto Trait Implementations§
impl RefUnwindSafe for ColorimetricIntentImageState
impl Send for ColorimetricIntentImageState
impl Sync for ColorimetricIntentImageState
impl Unpin for ColorimetricIntentImageState
impl UnwindSafe for ColorimetricIntentImageState
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more