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