[][src]Trait gif::Parameter

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

Configuration parameter trait.

Use the list of implementors to see which parameters are available for which struct.

Associated Types

type Result

Result type of set_param.

Loading content...

Required methods

fn set_param(self, _: &mut Object) -> Self::Result

Sets self as a parameter of Object.

Loading content...

Implementors

impl Parameter<StreamingDecoder> for Extensions[src]

type Result = ()

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

type Result = ()

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

type Result = ()

impl<T, R> Parameter<Decoder<R>> for T where
    T: Parameter<StreamingDecoder>,
    R: Read
[src]

type Result = ()

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

type Result = Result<(), Error>

Loading content...