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