pub struct ActionDecl {
pub name: Ident,
pub params: Vec<ActionParam>,
pub body: BlockSource,
pub span: SourceSpan,
}Expand description
action <name>(<param: type>, …) { <effect chain> } (DR-0023): a static,
hygienic, inline-expanded template over rule-body effect chains. Consumed by
expand_action_calls before lowering; never a runtime construct.
Fields§
§name: Ident§params: Vec<ActionParam>§body: BlockSource§span: SourceSpanTrait Implementations§
Source§impl Clone for ActionDecl
impl Clone for ActionDecl
Source§fn clone(&self) -> ActionDecl
fn clone(&self) -> ActionDecl
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 ActionDecl
impl Debug for ActionDecl
impl Eq for ActionDecl
Source§impl PartialEq for ActionDecl
impl PartialEq for ActionDecl
impl StructuralPartialEq for ActionDecl
Auto Trait Implementations§
impl Freeze for ActionDecl
impl RefUnwindSafe for ActionDecl
impl Send for ActionDecl
impl Sync for ActionDecl
impl Unpin for ActionDecl
impl UnsafeUnpin for ActionDecl
impl UnwindSafe for ActionDecl
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