Trait picto::Parameter[][src]

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

A parameter for a value.

Provided methods

Set the parameter on the value.

Get the parameter on the value.

Implementors