#[repr(u8)]pub enum ColorOutput {
    RGBA = 0,
    Indexed = 1,
}Expand description
Output mode for the image data
Variants§
RGBA = 0
The decoder expands the image data to 32bit RGBA. This affects:
- The buffer buffer of the 
Framereturned by [Decoder::read_next_frame]. Decoder::fill_buffer,Decoder::buffer_sizeandDecoder::line_length.
Indexed = 1
The decoder returns the raw indexed data.
Trait Implementations§
Source§impl Clone for ColorOutput
 
impl Clone for ColorOutput
Source§fn clone(&self) -> ColorOutput
 
fn clone(&self) -> ColorOutput
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 ColorOutput
 
impl Debug for ColorOutput
Source§impl PartialEq for ColorOutput
 
impl PartialEq for ColorOutput
impl Copy for ColorOutput
impl StructuralPartialEq for ColorOutput
Auto Trait Implementations§
impl Freeze for ColorOutput
impl RefUnwindSafe for ColorOutput
impl Send for ColorOutput
impl Sync for ColorOutput
impl Unpin for ColorOutput
impl UnwindSafe for ColorOutput
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