excel_cli/excel/
sheet.rs

1use crate::excel::Cell;
2
3#[derive(Clone)]
4pub struct Sheet {
5    pub name: String,
6    pub data: Vec<Vec<Cell>>,
7    pub max_rows: usize,
8    pub max_cols: usize,
9    pub is_loaded: bool,
10}