#[non_exhaustive]pub struct ColrIccBox {
pub icc_data: Vec<u8>,
}Expand description
ColourInformationBox with ICC profile (colour_type = ‘prof’ or ‘rICC’).
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.icc_data: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for ColrIccBox
impl Clone for ColrIccBox
Source§fn clone(&self) -> ColrIccBox
fn clone(&self) -> ColrIccBox
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 moreAuto Trait Implementations§
impl Freeze for ColrIccBox
impl RefUnwindSafe for ColrIccBox
impl Send for ColrIccBox
impl Sync for ColrIccBox
impl Unpin for ColrIccBox
impl UnsafeUnpin for ColrIccBox
impl UnwindSafe for ColrIccBox
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