pub enum LocalOrPackageScopeOrClassScope {
    Local(Box<Local>),
    PackageScope(Box<PackageScope>),
    ClassScope(Box<ClassScope>),
}Variants§
Trait Implementations§
Source§impl Clone for LocalOrPackageScopeOrClassScope
 
impl Clone for LocalOrPackageScopeOrClassScope
Source§fn clone(&self) -> LocalOrPackageScopeOrClassScope
 
fn clone(&self) -> LocalOrPackageScopeOrClassScope
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<'a> From<&'a LocalOrPackageScopeOrClassScope> for RefNode<'a>
 
impl<'a> From<&'a LocalOrPackageScopeOrClassScope> for RefNode<'a>
Source§fn from(x: &'a LocalOrPackageScopeOrClassScope) -> RefNode<'a>
 
fn from(x: &'a LocalOrPackageScopeOrClassScope) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a LocalOrPackageScopeOrClassScope> for RefNodes<'a>
 
impl<'a> From<&'a LocalOrPackageScopeOrClassScope> for RefNodes<'a>
Source§fn from(x: &'a LocalOrPackageScopeOrClassScope) -> RefNodes<'a>
 
fn from(x: &'a LocalOrPackageScopeOrClassScope) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<LocalOrPackageScopeOrClassScope> for AnyNode
 
impl From<LocalOrPackageScopeOrClassScope> for AnyNode
Source§fn from(x: LocalOrPackageScopeOrClassScope) -> AnyNode
 
fn from(x: LocalOrPackageScopeOrClassScope) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a LocalOrPackageScopeOrClassScope
 
impl<'a> IntoIterator for &'a LocalOrPackageScopeOrClassScope
Source§impl<'a> Node<'a> for LocalOrPackageScopeOrClassScope
 
impl<'a> Node<'a> for LocalOrPackageScopeOrClassScope
Source§impl PartialEq for LocalOrPackageScopeOrClassScope
 
impl PartialEq for LocalOrPackageScopeOrClassScope
Source§fn eq(&self, other: &LocalOrPackageScopeOrClassScope) -> bool
 
fn eq(&self, other: &LocalOrPackageScopeOrClassScope) -> bool
Tests for 
self and other values to be equal, and is used by ==.Source§impl<'a> TryFrom<&'a LocalOrPackageScopeOrClassScope> for Locate
 
impl<'a> TryFrom<&'a LocalOrPackageScopeOrClassScope> for Locate
impl StructuralPartialEq for LocalOrPackageScopeOrClassScope
Auto Trait Implementations§
impl Freeze for LocalOrPackageScopeOrClassScope
impl RefUnwindSafe for LocalOrPackageScopeOrClassScope
impl Send for LocalOrPackageScopeOrClassScope
impl Sync for LocalOrPackageScopeOrClassScope
impl Unpin for LocalOrPackageScopeOrClassScope
impl UnwindSafe for LocalOrPackageScopeOrClassScope
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