pub struct XlsxCellFormula<'a> {
pub pos: (u32, u32),
pub value: DataRef<'a>,
pub formula: Option<String>,
}Expand description
A single XLSX cell structure containing both cached/literal value and expanded formula text.
Fields§
§pos: (u32, u32)Zero-based (row, column) cell position.
value: DataRef<'a>Literal or cached value associated with the cell.
formula: Option<String>Formula text, expanded for shared formulas when the shared-formula anchor has already been observed in stream order.
Trait Implementations§
Source§impl<'a> Clone for XlsxCellFormula<'a>
impl<'a> Clone for XlsxCellFormula<'a>
Source§fn clone(&self) -> XlsxCellFormula<'a>
fn clone(&self) -> XlsxCellFormula<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for XlsxCellFormula<'a>
impl<'a> Debug for XlsxCellFormula<'a>
Source§impl<'a> PartialEq for XlsxCellFormula<'a>
impl<'a> PartialEq for XlsxCellFormula<'a>
Source§fn eq(&self, other: &XlsxCellFormula<'a>) -> bool
fn eq(&self, other: &XlsxCellFormula<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for XlsxCellFormula<'a>
Auto Trait Implementations§
impl<'a> Freeze for XlsxCellFormula<'a>
impl<'a> RefUnwindSafe for XlsxCellFormula<'a>
impl<'a> Send for XlsxCellFormula<'a>
impl<'a> Sync for XlsxCellFormula<'a>
impl<'a> Unpin for XlsxCellFormula<'a>
impl<'a> UnsafeUnpin for XlsxCellFormula<'a>
impl<'a> UnwindSafe for XlsxCellFormula<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more