pub struct WorkbookSummary {
pub file_name: String,
pub sheet_count: usize,
pub chart_count: usize,
pub sheets: Vec<SheetSummary>,
}Expand description
An overview of a workbook’s shape, for reporting rather than editing.
Fields§
§file_name: StringThe file the workbook was loaded from, as the caller named it.
sheet_count: usizeHow many sheets it has.
chart_count: usizeHow many charts it has.
sheets: Vec<SheetSummary>One entry per sheet, in workbook order.
Auto Trait Implementations§
impl Freeze for WorkbookSummary
impl RefUnwindSafe for WorkbookSummary
impl Send for WorkbookSummary
impl Sync for WorkbookSummary
impl Unpin for WorkbookSummary
impl UnsafeUnpin for WorkbookSummary
impl UnwindSafe for WorkbookSummary
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