pub enum DefinedNameScope {
Workbook,
Sheet(u32),
}Expand description
Scope of a defined name.
Variants§
Workbook
Workbook-level scope (visible from all sheets).
Sheet(u32)
Sheet-level scope (only visible in the specified sheet).
Trait Implementations§
Source§impl Clone for DefinedNameScope
impl Clone for DefinedNameScope
Source§fn clone(&self) -> DefinedNameScope
fn clone(&self) -> DefinedNameScope
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 DefinedNameScope
impl Debug for DefinedNameScope
Source§impl PartialEq for DefinedNameScope
impl PartialEq for DefinedNameScope
impl StructuralPartialEq for DefinedNameScope
Auto Trait Implementations§
impl Freeze for DefinedNameScope
impl RefUnwindSafe for DefinedNameScope
impl Send for DefinedNameScope
impl Sync for DefinedNameScope
impl Unpin for DefinedNameScope
impl UnwindSafe for DefinedNameScope
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