#[repr(C)]pub enum JxlOrientation {
Identity = 1,
FlipHorizontal = 2,
Rotate180 = 3,
FlipVertical = 4,
Transpose = 5,
Rotate90Cw = 6,
AntiTranspose = 7,
Rotate90Ccw = 8,
}Expand description
Image orientation metadata.
Values 1..8 match the EXIF definitions. The name indicates the operation to perform to transform from the encoded image to the display image.
Variants§
Identity = 1
FlipHorizontal = 2
Rotate180 = 3
FlipVertical = 4
Transpose = 5
Rotate90Cw = 6
AntiTranspose = 7
Rotate90Ccw = 8
Trait Implementations§
Source§impl Clone for JxlOrientation
impl Clone for JxlOrientation
Source§fn clone(&self) -> JxlOrientation
fn clone(&self) -> JxlOrientation
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 JxlOrientation
impl Debug for JxlOrientation
Source§impl Hash for JxlOrientation
impl Hash for JxlOrientation
Source§impl PartialEq for JxlOrientation
impl PartialEq for JxlOrientation
impl Copy for JxlOrientation
impl Eq for JxlOrientation
impl StructuralPartialEq for JxlOrientation
Auto Trait Implementations§
impl Freeze for JxlOrientation
impl RefUnwindSafe for JxlOrientation
impl Send for JxlOrientation
impl Sync for JxlOrientation
impl Unpin for JxlOrientation
impl UnwindSafe for JxlOrientation
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