pub enum SpillValue {
Boolean(bool),
Number(f64),
Text(String),
Error(Error),
}Expand description
The value stored in a spill cell (no formula, no origin tracking).
Variants§
Trait Implementations§
Source§impl Clone for SpillValue
impl Clone for SpillValue
Source§fn clone(&self) -> SpillValue
fn clone(&self) -> SpillValue
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 Debug for SpillValue
impl Debug for SpillValue
Source§impl PartialEq for SpillValue
impl PartialEq for SpillValue
Source§fn eq(&self, other: &SpillValue) -> bool
fn eq(&self, other: &SpillValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'__de> Decode<'__de> for SpillValuewhere
'__de:,
impl Encode for SpillValue
impl StructuralPartialEq for SpillValue
Auto Trait Implementations§
impl Freeze for SpillValue
impl RefUnwindSafe for SpillValue
impl Send for SpillValue
impl Sync for SpillValue
impl Unpin for SpillValue
impl UnsafeUnpin for SpillValue
impl UnwindSafe for SpillValue
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