Skip to main content

CellChangeRow

Struct CellChangeRow 

Source
pub struct CellChangeRow<'a> {
    pub anchor: ChangeAnchor,
    pub sheet_name: &'a str,
    pub address: &'a CellAddress,
    pub change_kind: CellChangeKind,
    pub old_display: String,
    pub new_display: String,
    pub formula_changed: bool,
    pub max_severity: Option<Severity>,
}
Expand description

A single row in the flat change list presented to a GUI table.

Fields§

§anchor: ChangeAnchor

Stable anchor for navigation and virtualized table positioning.

§sheet_name: &'a str§address: &'a CellAddress§change_kind: CellChangeKind

Combined change kind derived from sub-fields.

§old_display: String

Display string for the old value (empty if Added).

§new_display: String

Display string for the new value (empty if Removed).

§formula_changed: bool

Whether a formula also changed on this cell.

§max_severity: Option<Severity>

Highest diagnostic severity attached to this cell.

Auto Trait Implementations§

§

impl<'a> Freeze for CellChangeRow<'a>

§

impl<'a> RefUnwindSafe for CellChangeRow<'a>

§

impl<'a> Send for CellChangeRow<'a>

§

impl<'a> Sync for CellChangeRow<'a>

§

impl<'a> Unpin for CellChangeRow<'a>

§

impl<'a> UnsafeUnpin for CellChangeRow<'a>

§

impl<'a> UnwindSafe for CellChangeRow<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.