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