Trait buffer_graphics_lib::shapes::collection::AddShape
source · [−]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
source