Struct oxipng::png::ScanLine [] [src]

pub struct ScanLine {
    pub filter: u8,
    pub data: Vec<u8>,
    pub pass: Option<u8>,
}

A scan line in a PNG image

Fields

filter

The filter type used to encode the current scan line (0-4)

data

The byte data for the current scan line, encoded with the filter specified in the filter field

pass

The current pass if the image is interlaced

Trait Implementations

Derived Implementations

impl Clone for ScanLine

fn clone(&self) -> ScanLine

fn clone_from(&mut self, source: &Self)1.0.0

impl Debug for ScanLine

fn fmt(&self, __arg_0: &mut Formatter) -> Result