Trait InsertShapeBox

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

Required Methods§

Source

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

Source

fn insert_above(&mut self, shape_box: ShapeBox, draw_type: DrawType)

Source

fn insert_under(&mut self, shape_box: ShapeBox, draw_type: DrawType)

Implementors§