pub trait InsertDrawable<S>: InsertShapeBoxwhere
S: Clone,{
// Required methods
fn insert(&mut self, index: usize, drawable: Drawable<S>);
fn insert_above(&mut self, drawable: Drawable<S>);
fn insert_under(&mut self, drawable: Drawable<S>);
}