#[derive(Clone, Copy, Debug, Hash, Eq, PartialEq)]
pub enum PlaceholderScope {
Cell {
column: usize,
row: usize,
},
Row {
columns: usize,
row: usize,
},
Block {
columns: usize,
rows: usize,
},
}
impl Default for PlaceholderScope {
fn default() -> Self {
Self::Cell { row: 0, column: 0 }
}
}