pub enum SheetVisible {
Visible,
Hidden,
VeryHidden,
}
Expand description
Type of visible sheet
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html#__RefHeading__1417896_253892949 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/74cb1d22-b931-4bf8-997d-17517e2416e9 ECMA-376 Part 1 18.18.68
Variants§
Visible
Visible
Hidden
Hidden
VeryHidden
The sheet is hidden and cannot be displayed using the user interface. It is supported only by Excel formats.
Trait Implementations§
Source§impl Clone for SheetVisible
impl Clone for SheetVisible
Source§fn clone(&self) -> SheetVisible
fn clone(&self) -> SheetVisible
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SheetVisible
impl Debug for SheetVisible
Source§impl PartialEq for SheetVisible
impl PartialEq for SheetVisible
impl Copy for SheetVisible
impl StructuralPartialEq for SheetVisible
Auto Trait Implementations§
impl Freeze for SheetVisible
impl RefUnwindSafe for SheetVisible
impl Send for SheetVisible
impl Sync for SheetVisible
impl Unpin for SheetVisible
impl UnwindSafe for SheetVisible
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