pub struct SheetSummary {
pub name: String,
pub row_count: usize,
pub col_count: usize,
pub formula_count: usize,
}Expand description
A single sheet’s line in a WorkbookSummary.
Fields§
§name: StringThe sheet’s name.
row_count: usizeAllocated rows.
col_count: usizeAllocated columns.
formula_count: usizeHow many of its cells hold a formula rather than a literal.
Auto Trait Implementations§
impl Freeze for SheetSummary
impl RefUnwindSafe for SheetSummary
impl Send for SheetSummary
impl Sync for SheetSummary
impl Unpin for SheetSummary
impl UnsafeUnpin for SheetSummary
impl UnwindSafe for SheetSummary
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