Enum gif::ColorOutput [−][src]
#[repr(u8)]
pub enum ColorOutput {
RGBA,
Indexed,
}
Expand description
Output mode for the image data
Variants
RGBA
The decoder expands the image data to 32bit RGBA. This affects:
- The buffer buffer of the
Frame
returned byDecoder::read_next_frame
. Decoder::fill_buffer
,Decoder::buffer_size
andDecoder::line_length
.
Indexed
The decoder returns the raw indexed data.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ColorOutput
impl Send for ColorOutput
impl Sync for ColorOutput
impl Unpin for ColorOutput
impl UnwindSafe for ColorOutput
Blanket Implementations
Mutably borrows from an owned value. Read more