pub struct Resolved {
pub value: Value,
pub anchor: Option<Address>,
}Expand description
The effective value at an address after spill resolution (schema spec §5),
returned by Workbook::resolved.
For an authored cell, anchor is None and value is the cell’s stored
value. For a spilled cell, value is the reconstructed array element and
anchor is the address of the spilling anchor on the same sheet (the
runtime spilledFrom marker of §5 — a derived view, never serialized).
Fields§
§value: ValueThe effective value at the queried address.
anchor: Option<Address>The spill anchor, if the queried cell is spilled; None for an authored
cell.
Trait Implementations§
impl StructuralPartialEq for Resolved
Auto Trait Implementations§
impl Freeze for Resolved
impl RefUnwindSafe for Resolved
impl Send for Resolved
impl Sync for Resolved
impl Unpin for Resolved
impl UnsafeUnpin for Resolved
impl UnwindSafe for Resolved
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