pub trait Updatable<U> { // Required method fn update(&mut self, with: &U); }
Updatable types can be upgraded in place based on data given by U values.
Updatable
U
Update this value with data from with.
with