pub struct SheetSummaryRow<'a> {
pub sheet_index: usize,
pub name: &'a str,
pub change: &'a SheetChange,
pub cells_changed: usize,
pub has_diagnostics: bool,
}Expand description
Summary line for one sheet in the sheet-tree view.
Fields§
§sheet_index: usize§name: &'a str§change: &'a SheetChange§cells_changed: usize§has_diagnostics: boolAuto Trait Implementations§
impl<'a> Freeze for SheetSummaryRow<'a>
impl<'a> RefUnwindSafe for SheetSummaryRow<'a>
impl<'a> Send for SheetSummaryRow<'a>
impl<'a> Sync for SheetSummaryRow<'a>
impl<'a> Unpin for SheetSummaryRow<'a>
impl<'a> UnsafeUnpin for SheetSummaryRow<'a>
impl<'a> UnwindSafe for SheetSummaryRow<'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