Trait picto::Parameter [] [src]

pub trait Parameter<T: ?Sized>: Sized {
    fn set(self, to: &mut T) -> Result<()> { ... }
    fn get(from: &mut T) -> Result<Self> { ... }
}

A parameter for a value.

Provided Methods

Set the parameter on the value.

Get the parameter on the value.

Implementors