Updatable

Trait Updatable 

Source
pub trait Updatable<U> {
    // Required method
    fn update(&mut self, with: &U);
}
Expand description

Updatable types can be upgraded in place based on data given by U values.

Required Methods§

Source

fn update(&mut self, with: &U)

Update this value with data from with.

Implementors§