pub struct ActionDecl {
pub name: Ident,
pub params: Vec<Param>,
pub body: ActionBody,
pub span: Span,
}Expand description
action NAME(params) { body }
Fields§
§name: Ident§params: Vec<Param>§body: ActionBody§span: SpanTrait 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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ActionDecl
impl RefUnwindSafe for ActionDecl
impl Send for ActionDecl
impl Sync for ActionDecl
impl Unpin 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