Enum jpeg_decoder::PixelFormat[][src]

pub enum PixelFormat {
    L8,
    RGB24,
    CMYK32,
}

An enumeration over combinations of color spaces and bit depths a pixel can have.

Variants

Luminance (grayscale), 8 bits

RGB, 8 bits per channel

CMYK, 8 bits per channel

Trait Implementations

impl Clone for PixelFormat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for PixelFormat
[src]

impl Debug for PixelFormat
[src]

Formats the value using the given formatter. Read more

impl PartialEq for PixelFormat
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for PixelFormat

impl Sync for PixelFormat