FIX: removes more unused code

This commit is contained in:
Nicolás Hatcher
2024-02-13 19:05:11 +01:00
parent ef8b1053dc
commit 29743f09e1
2 changed files with 0 additions and 3 deletions

View File

@@ -9,7 +9,6 @@ pub struct CellReference {
pub row: i32,
}
#[derive(Clone)]
pub struct Range {
pub left: CellReference,
pub right: CellReference,

View File

@@ -62,7 +62,6 @@ pub enum CellState {
Evaluating,
}
#[derive(Clone)]
pub enum ParsedDefinedName {
CellReference(CellReference),
RangeReference(Range),
@@ -78,7 +77,6 @@ pub enum ParsedDefinedName {
/// * A list of cells with its status (evaluating, evaluated, not evaluated)
/// * A dictionary with the shared strings and their indices.
/// This is an optimization for large files (~1 million rows)
#[derive(Clone)]
pub struct Model {
pub workbook: Workbook,
pub parsed_formulas: Vec<Vec<Node>>,