pub enum BindTargetScope {
    ModuleIdentifier(Box<ModuleIdentifier>),
    InterfaceIdentifier(Box<InterfaceIdentifier>),
}Variants§
ModuleIdentifier(Box<ModuleIdentifier>)
InterfaceIdentifier(Box<InterfaceIdentifier>)
Trait Implementations§
Source§impl Clone for BindTargetScope
 
impl Clone for BindTargetScope
Source§fn clone(&self) -> BindTargetScope
 
fn clone(&self) -> BindTargetScope
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 BindTargetScope
 
impl Debug for BindTargetScope
Source§impl<'a> From<&'a BindTargetScope> for RefNode<'a>
 
impl<'a> From<&'a BindTargetScope> for RefNode<'a>
Source§fn from(x: &'a BindTargetScope) -> RefNode<'a>
 
fn from(x: &'a BindTargetScope) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a BindTargetScope> for RefNodes<'a>
 
impl<'a> From<&'a BindTargetScope> for RefNodes<'a>
Source§fn from(x: &'a BindTargetScope) -> RefNodes<'a>
 
fn from(x: &'a BindTargetScope) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<BindTargetScope> for AnyNode
 
impl From<BindTargetScope> for AnyNode
Source§fn from(x: BindTargetScope) -> AnyNode
 
fn from(x: BindTargetScope) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a BindTargetScope
 
impl<'a> IntoIterator for &'a BindTargetScope
Source§impl PartialEq for BindTargetScope
 
impl PartialEq for BindTargetScope
Source§impl<'a> TryFrom<&'a BindTargetScope> for Locate
 
impl<'a> TryFrom<&'a BindTargetScope> for Locate
Source§impl TryFrom<AnyNode> for BindTargetScope
 
impl TryFrom<AnyNode> for BindTargetScope
Source§impl TryFrom<BindTargetScope> for Locate
 
impl TryFrom<BindTargetScope> for Locate
impl StructuralPartialEq for BindTargetScope
Auto Trait Implementations§
impl Freeze for BindTargetScope
impl RefUnwindSafe for BindTargetScope
impl Send for BindTargetScope
impl Sync for BindTargetScope
impl Unpin for BindTargetScope
impl UnwindSafe for BindTargetScope
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