pub enum SheetVisible {
Visible,
Hidden,
VeryHidden,
}Expand description
Type of visible sheet.
The property is defined in the following specifications:
- ECMA-376 Part 1 18.18.68
ST_SheetState(Sheet Visibility Types). - MS-XLS
BoundSheet. - MS-XLSB
ST_SheetState. - OpenDocument v1.2 19.471
style:display.
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 duplicate 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 UnsafeUnpin 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