pub enum DefinedNameScope {
Workbook,
Sheet(SheetId),
}Expand description
Visibility scope of a workbook defined name.
Variants§
Workbook
The name is visible throughout the workbook.
Sheet(SheetId)
The name is visible only within one 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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DefinedNameScope
Source§impl Debug for DefinedNameScope
impl Debug for DefinedNameScope
Source§impl Default for DefinedNameScope
impl Default for DefinedNameScope
Source§fn default() -> DefinedNameScope
fn default() -> DefinedNameScope
Returns the “default value” for a type. Read more
impl Eq for DefinedNameScope
Source§impl Hash for DefinedNameScope
impl Hash for DefinedNameScope
Source§impl Ord for DefinedNameScope
impl Ord for DefinedNameScope
Source§fn cmp(&self, other: &DefinedNameScope) -> Ordering
fn cmp(&self, other: &DefinedNameScope) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DefinedNameScope
impl PartialEq for DefinedNameScope
Source§impl PartialOrd for DefinedNameScope
impl PartialOrd 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 UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.