#[repr(C)]pub enum JxlColorProfileTarget {
Original = 0,
Data = 1,
}Expand description
Defines which color profile to get: the profile from the codestream
metadata header, which represents the color profile of the original image,
or the color profile from the pixel data produced by the decoder. Both are
the same if the JxlBasicInfo has uses_original_profile set.
Variants§
Trait Implementations§
Source§impl Clone for JxlColorProfileTarget
impl Clone for JxlColorProfileTarget
Source§fn clone(&self) -> JxlColorProfileTarget
fn clone(&self) -> JxlColorProfileTarget
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 JxlColorProfileTarget
impl Debug for JxlColorProfileTarget
Source§impl Hash for JxlColorProfileTarget
impl Hash for JxlColorProfileTarget
Source§impl PartialEq for JxlColorProfileTarget
impl PartialEq for JxlColorProfileTarget
impl Copy for JxlColorProfileTarget
impl Eq for JxlColorProfileTarget
impl StructuralPartialEq for JxlColorProfileTarget
Auto Trait Implementations§
impl Freeze for JxlColorProfileTarget
impl RefUnwindSafe for JxlColorProfileTarget
impl Send for JxlColorProfileTarget
impl Sync for JxlColorProfileTarget
impl Unpin for JxlColorProfileTarget
impl UnwindSafe for JxlColorProfileTarget
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