pub enum ActionDefBodyElement {
Show 16 variants
Error(Node<ParseErrorNode>),
InOutDecl(Node<InOutDecl>),
Doc(Node<DocComment>),
Annotation(Node<Annotation>),
RefDecl(Node<RefDecl>),
Perform(Node<Perform>),
Bind(Node<Bind>),
Flow(Node<Flow>),
FirstStmt(Node<FirstStmt>),
MergeStmt(Node<MergeStmt>),
StateUsage(Node<StateUsage>),
ActionUsage(Box<Node<ActionUsage>>),
Assign(Node<AssignStmt>),
ForLoop(Node<ForLoop>),
ThenAction(Node<ThenAction>),
Decl(Node<ActionBodyDecl>),
}Expand description
Element inside an action definition body.
Variants§
Error(Node<ParseErrorNode>)
InOutDecl(Node<InOutDecl>)
Doc(Node<DocComment>)
Annotation(Node<Annotation>)
RefDecl(Node<RefDecl>)
Perform(Node<Perform>)
Bind(Node<Bind>)
Flow(Node<Flow>)
FirstStmt(Node<FirstStmt>)
MergeStmt(Node<MergeStmt>)
StateUsage(Node<StateUsage>)
ActionUsage(Box<Node<ActionUsage>>)
Assign(Node<AssignStmt>)
ForLoop(Node<ForLoop>)
ThenAction(Node<ThenAction>)
Decl(Node<ActionBodyDecl>)
Trait Implementations§
Source§impl Clone for ActionDefBodyElement
impl Clone for ActionDefBodyElement
Source§fn clone(&self) -> ActionDefBodyElement
fn clone(&self) -> ActionDefBodyElement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionDefBodyElement
impl Debug for ActionDefBodyElement
impl Eq for ActionDefBodyElement
Source§impl PartialEq for ActionDefBodyElement
impl PartialEq for ActionDefBodyElement
Source§fn eq(&self, other: &ActionDefBodyElement) -> bool
fn eq(&self, other: &ActionDefBodyElement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ActionDefBodyElement
Auto Trait Implementations§
impl Freeze for ActionDefBodyElement
impl RefUnwindSafe for ActionDefBodyElement
impl Send for ActionDefBodyElement
impl Sync for ActionDefBodyElement
impl Unpin for ActionDefBodyElement
impl UnsafeUnpin for ActionDefBodyElement
impl UnwindSafe for ActionDefBodyElement
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