pub enum SheetType {
WorkSheet,
DialogSheet,
MacroSheet,
ChartSheet,
Vba,
}Expand description
Type of sheet.
Only Excel formats support this. Default value for ODS is
SheetType::WorkSheet.
The property is defined in the following specifications:
- ECMA-376 Part 1 12.3.2, 12.3.7 and 12.3.24.
- MS-XLS
BoundSheet. - [MS-XLSB
ST_SheetType].
Variants§
WorkSheet
A worksheet.
DialogSheet
A dialog sheet.
MacroSheet
A macro sheet.
ChartSheet
A chartsheet.
Vba
A VBA module.
Trait Implementations§
impl Copy for SheetType
impl StructuralPartialEq for SheetType
Auto Trait Implementations§
impl Freeze for SheetType
impl RefUnwindSafe for SheetType
impl Send for SheetType
impl Sync for SheetType
impl Unpin for SheetType
impl UnsafeUnpin for SheetType
impl UnwindSafe for SheetType
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