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

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

Sets self as a parameter of Object.

Implementors