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

Result type of set_param.

Required Methods

Sets self as a parameter of Object.

Implementors