#[repr(u32)]pub enum J_COLOR_SPACE {
Show 17 variants
JCS_UNKNOWN = 0,
JCS_GRAYSCALE = 1,
JCS_RGB = 2,
JCS_YCbCr = 3,
JCS_CMYK = 4,
JCS_YCCK = 5,
JCS_EXT_RGB = 6,
JCS_EXT_RGBX = 7,
JCS_EXT_BGR = 8,
JCS_EXT_BGRX = 9,
JCS_EXT_XBGR = 10,
JCS_EXT_XRGB = 11,
JCS_EXT_RGBA = 12,
JCS_EXT_BGRA = 13,
JCS_EXT_ABGR = 14,
JCS_EXT_ARGB = 15,
JCS_RGB565 = 16,
}Variants§
JCS_UNKNOWN = 0
JCS_GRAYSCALE = 1
JCS_RGB = 2
JCS_YCbCr = 3
JCS_CMYK = 4
JCS_YCCK = 5
JCS_EXT_RGB = 6
JCS_EXT_RGBX = 7
JCS_EXT_BGR = 8
JCS_EXT_BGRX = 9
JCS_EXT_XBGR = 10
JCS_EXT_XRGB = 11
JCS_EXT_RGBA = 12
JCS_EXT_BGRA = 13
JCS_EXT_ABGR = 14
JCS_EXT_ARGB = 15
JCS_RGB565 = 16
Trait Implementations§
Source§impl Clone for J_COLOR_SPACE
impl Clone for J_COLOR_SPACE
Source§fn clone(&self) -> J_COLOR_SPACE
fn clone(&self) -> J_COLOR_SPACE
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 J_COLOR_SPACE
impl Debug for J_COLOR_SPACE
Source§impl Hash for J_COLOR_SPACE
impl Hash for J_COLOR_SPACE
Source§impl PartialEq for J_COLOR_SPACE
impl PartialEq for J_COLOR_SPACE
impl Copy for J_COLOR_SPACE
impl Eq for J_COLOR_SPACE
impl StructuralPartialEq for J_COLOR_SPACE
Auto Trait Implementations§
impl Freeze for J_COLOR_SPACE
impl RefUnwindSafe for J_COLOR_SPACE
impl Send for J_COLOR_SPACE
impl Sync for J_COLOR_SPACE
impl Unpin for J_COLOR_SPACE
impl UnwindSafe for J_COLOR_SPACE
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