Enum jpeg_decoder::PixelFormat
source · [−]pub enum PixelFormat {
L8,
RGB24,
CMYK32,
}
Expand description
An enumeration over combinations of color spaces and bit depths a pixel can have.
Variants
L8
Luminance (grayscale), 8 bits
RGB24
RGB, 8 bits per channel
CMYK32
CMYK, 8 bits per channel
Implementations
sourceimpl PixelFormat
impl PixelFormat
sourcepub fn pixel_bytes(&self) -> usize
pub fn pixel_bytes(&self) -> usize
Determine the size in bytes of each pixel in this format
Trait Implementations
sourceimpl Clone for PixelFormat
impl Clone for PixelFormat
sourcefn clone(&self) -> PixelFormat
fn clone(&self) -> PixelFormat
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for PixelFormat
impl Debug for PixelFormat
sourceimpl PartialEq<PixelFormat> for PixelFormat
impl PartialEq<PixelFormat> for PixelFormat
sourcefn eq(&self, other: &PixelFormat) -> bool
fn eq(&self, other: &PixelFormat) -> bool
impl Copy for PixelFormat
impl StructuralPartialEq for PixelFormat
Auto Trait Implementations
impl RefUnwindSafe for PixelFormat
impl Send for PixelFormat
impl Sync for PixelFormat
impl Unpin for PixelFormat
impl UnwindSafe for PixelFormat
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more