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