Trait modifier::Modifier [] [src]

pub trait Modifier<F: ?Sized> {
    fn modify(self, _: &mut F);
}

Allows use of the implemented type as an argument to Set::set.

This allows types to be used for ad-hoc overloading of Set::set to perform complex updates to the parameter of Modifier.

Required Methods

Modify F with self.

Implementors