pub trait AddShape<K: Eq + PartialEq + Hash + Clone, T: Clone> {
    fn add(&mut self, key: K, shape: Drawable<T>);
    fn remove_shape(&mut self, shape: &T);
    fn remove(&mut self, shape: &Drawable<T>);
}

Required Methods

Implementors