Trait greenglas::modifier::Modifier[][src]

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

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.

Implementations on Foreign Types

Implementors