pub trait Updateable {
    // Required method
    fn update(&self, other: Self);
}

Required Methods§

source

fn update(&self, other: Self)

Implementations on Foreign Types§

source§

impl<T> Updateable for MutableVec<T>where T: Updateable + Clone,

source§

fn update(&self, other: Self)

source§

impl<K, V> Updateable for (K, V)where V: Updateable,

source§

fn update(&self, other: Self)

source§

impl<T> Updateable for Mutable<T>where T: PartialEq,

source§

fn update(&self, other: Self)

Implementors§