#[non_exhaustive]pub struct IccIdentification {
pub primaries: ColorPrimaries,
pub transfer: TransferFunction,
pub valid_use: IdentificationUse,
}Expand description
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.primaries: ColorPrimariesRecognized color primaries.
transfer: TransferFunctionRecognized transfer function.
valid_use: IdentificationUseWhat this identification can be used for.
Implementations§
Trait Implementations§
Source§impl Clone for IccIdentification
impl Clone for IccIdentification
Source§fn clone(&self) -> IccIdentification
fn clone(&self) -> IccIdentification
Returns a duplicate 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 IccIdentification
impl Debug for IccIdentification
Source§impl Hash for IccIdentification
impl Hash for IccIdentification
Source§impl PartialEq for IccIdentification
impl PartialEq for IccIdentification
impl Copy for IccIdentification
impl Eq for IccIdentification
impl StructuralPartialEq for IccIdentification
Auto Trait Implementations§
impl Freeze for IccIdentification
impl RefUnwindSafe for IccIdentification
impl Send for IccIdentification
impl Sync for IccIdentification
impl Unpin for IccIdentification
impl UnsafeUnpin for IccIdentification
impl UnwindSafe for IccIdentification
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