pub trait Patch { type Value; // Required method fn patch(&self, new: Self::Value); }
Allows updating a store or field in place with a new value.
The type of the new value.
Patches a store or field with a new value, only notifying fields that have changed.