Trait gif::Parameter[][src]

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

Configuration parameter trait.

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

Associated Types

Result type of set_param.

Required methods

Sets self as a parameter of Object.

Implementors