Enum lcms2_sys::ffi::IlluminantType
source · #[non_exhaustive]#[repr(u32)]pub enum IlluminantType {
UNKNOWN = 0,
D50 = 1,
D65 = 2,
D93 = 3,
F2 = 4,
D55 = 5,
A = 6,
E = 7,
F8 = 8,
}
Expand description
Illuminant types for structs below
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.
Trait Implementations§
source§impl Clone for IlluminantType
impl Clone for IlluminantType
source§fn clone(&self) -> IlluminantType
fn clone(&self) -> IlluminantType
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 IlluminantType
impl Debug for IlluminantType
source§impl Hash for IlluminantType
impl Hash for IlluminantType
source§impl PartialEq for IlluminantType
impl PartialEq for IlluminantType
source§fn eq(&self, other: &IlluminantType) -> bool
fn eq(&self, other: &IlluminantType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for IlluminantType
impl Eq for IlluminantType
impl StructuralPartialEq for IlluminantType
Auto Trait Implementations§
impl RefUnwindSafe for IlluminantType
impl Send for IlluminantType
impl Sync for IlluminantType
impl Unpin for IlluminantType
impl UnwindSafe for IlluminantType
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