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

pub struct ScanLine {
    pub filter: u8,
    pub data: Vec<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

Trait Implementations

Derived Implementations

impl Clone for ScanLine

fn clone(&self) -> ScanLine

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

impl Debug for ScanLine

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