#[repr(C)]pub enum JxlEndianness {
Native = 0,
Little = 1,
Big = 2,
}Expand description
Ordering of multi-byte data.
Variants§
Native = 0
Use the endianness of the system, either little endian or big endian, without forcing either specific endianness. Do not use if pixel data should be exported to a well defined format.
Little = 1
Force little endian
Big = 2
Force big endian
Trait Implementations§
Source§impl Clone for JxlEndianness
impl Clone for JxlEndianness
Source§fn clone(&self) -> JxlEndianness
fn clone(&self) -> JxlEndianness
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 JxlEndianness
impl Debug for JxlEndianness
Source§impl Hash for JxlEndianness
impl Hash for JxlEndianness
Source§impl PartialEq for JxlEndianness
impl PartialEq for JxlEndianness
impl Copy for JxlEndianness
impl Eq for JxlEndianness
impl StructuralPartialEq for JxlEndianness
Auto Trait Implementations§
impl Freeze for JxlEndianness
impl RefUnwindSafe for JxlEndianness
impl Send for JxlEndianness
impl Sync for JxlEndianness
impl Unpin for JxlEndianness
impl UnwindSafe for JxlEndianness
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