FIX: removes more unused code
This commit is contained in:
@@ -9,7 +9,6 @@ pub struct CellReference {
|
|||||||
pub row: i32,
|
pub row: i32,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone)]
|
|
||||||
pub struct Range {
|
pub struct Range {
|
||||||
pub left: CellReference,
|
pub left: CellReference,
|
||||||
pub right: CellReference,
|
pub right: CellReference,
|
||||||
|
|||||||
@@ -62,7 +62,6 @@ pub enum CellState {
|
|||||||
Evaluating,
|
Evaluating,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone)]
|
|
||||||
pub enum ParsedDefinedName {
|
pub enum ParsedDefinedName {
|
||||||
CellReference(CellReference),
|
CellReference(CellReference),
|
||||||
RangeReference(Range),
|
RangeReference(Range),
|
||||||
@@ -78,7 +77,6 @@ pub enum ParsedDefinedName {
|
|||||||
/// * A list of cells with its status (evaluating, evaluated, not evaluated)
|
/// * A list of cells with its status (evaluating, evaluated, not evaluated)
|
||||||
/// * A dictionary with the shared strings and their indices.
|
/// * A dictionary with the shared strings and their indices.
|
||||||
/// This is an optimization for large files (~1 million rows)
|
/// This is an optimization for large files (~1 million rows)
|
||||||
#[derive(Clone)]
|
|
||||||
pub struct Model {
|
pub struct Model {
|
||||||
pub workbook: Workbook,
|
pub workbook: Workbook,
|
||||||
pub parsed_formulas: Vec<Vec<Node>>,
|
pub parsed_formulas: Vec<Vec<Node>>,
|
||||||
|
|||||||
Reference in New Issue
Block a user