Trait relearn::cli::Update[][src]

pub trait Update<T> {
    fn update(&mut self, source: T);
}
Expand description

Can be updated from a value of type T.

Required methods

Update in-place from the given source value.

Implementors