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 Extensions type Result = ();impl<T, R> Parameter<Decoder<R>> for T where
T: Parameter<StreamingDecoder>,
R: Read, type Result = ();impl<R: Read> Parameter<Decoder<R>> for ColorOutput type Result = ();impl<R: Read> Parameter<Decoder<R>> for MemoryLimit type Result = ();impl<W: Write> Parameter<Encoder<W>> for Repeat type Result = Result<(), Error>;