Trait gif::Parameter
[−]
[src]
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.
Required Methods
Implementors
impl Parameter<StreamingDecoder> for Extensionsimpl<T, R> Parameter<Decoder<R>> for T where T: Parameter<StreamingDecoder>, R: Readimpl<R: Read> Parameter<Decoder<R>> for ColorOutputimpl<R: Read> Parameter<Decoder<R>> for MemoryLimitimpl<W: Write> Parameter<Encoder<W>> for Repeat