use formualizer_common::LiteralValue;
#[derive(Clone, Debug, PartialEq)]
pub struct FormulaCacheUpdate {
pub sheet: String,
pub row: u32,
pub col: u32,
pub value: LiteralValue,
}
#[derive(Clone, Copy, Debug)]
pub struct FormulaCacheUpdateRef<'a> {
pub sheet: &'a str,
pub row: u32,
pub col: u32,
pub value: &'a LiteralValue,
}