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