pub struct Cell {
pub r: CompactCellRef,
pub col: u32,
pub s: Option<u32>,
pub t: CellTypeTag,
pub v: Option<String>,
pub f: Option<Box<CellFormula>>,
pub is: Option<Box<InlineString>>,
}Expand description
A single cell.
Fields§
§r: CompactCellRefCell reference (e.g., “A1”).
col: u32Cached 1-based column number parsed from r. Populated at load time
or at creation time to avoid repeated string parsing.
s: Option<u32>Style index.
t: CellTypeTagCell data type.
v: Option<String>Cell value.
f: Option<Box<CellFormula>>Cell formula.
is: Option<Box<InlineString>>Inline string.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cell
impl<'de> Deserialize<'de> for Cell
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Cell
Auto Trait Implementations§
impl Freeze for Cell
impl RefUnwindSafe for Cell
impl Send for Cell
impl Sync for Cell
impl Unpin for Cell
impl UnwindSafe for Cell
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