[][src]Trait png::Parameter

pub trait Parameter<Object> {
    fn set_param(self, _: &mut Object);
}

Configuration parameter trait

Required methods

fn set_param(self, _: &mut Object)

Loading content...

Implementors

impl<R: Read> Parameter<Decoder<R>> for Transformations[src]

impl<W: Write> Parameter<Encoder<W>> for BitDepth[src]

impl<W: Write> Parameter<Encoder<W>> for ColorType[src]

impl<W: Write> Parameter<Encoder<W>> for FilterType[src]

impl<W: Write, C: Into<Compression>> Parameter<Encoder<W>> for C[src]

Set compression param for a Compression or any type that can transform into a Compression, notably deflate::Compression and deflate::CompressionOptions which "just work".

Loading content...