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. https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-xls/b9ec509a-235d-424e-871d-f8e721106501 https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-xlsb/1edadf56-b5cd-4109-abe7-76651bbe2722 ECMA-376 Part 1 12.3.2, 12.3.7 and 12.3.24
Variants§
WorkSheet
WorkSheet
DialogSheet
DialogSheet
MacroSheet
MacroSheet
ChartSheet
ChartSheet
Vba
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 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