pub trait InsertShapeBox {
    // Required methods
    fn insert(&mut self, index: usize, shape_box: ShapeBox);
    fn insert_above(&mut self, shape_box: ShapeBox);
    fn insert_under(&mut self, shape_box: ShapeBox);
}

Required Methods§

source

fn insert(&mut self, index: usize, shape_box: ShapeBox)

source

fn insert_above(&mut self, shape_box: ShapeBox)

source

fn insert_under(&mut self, shape_box: ShapeBox)

Implementors§