pub struct ActionDecl {
pub name: Ident,
pub params: Vec<Param>,
pub body: Block,
pub span: Span,
}Expand description
action name(params) { body }
Fields§
§name: Ident§params: Vec<Param>§body: Block§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 moreSource§impl Debug for ActionDecl
impl Debug for ActionDecl
Source§impl<'de> Deserialize<'de> for ActionDecl
impl<'de> Deserialize<'de> for ActionDecl
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ActionDecl
impl PartialEq for ActionDecl
Source§impl Serialize for ActionDecl
impl Serialize 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 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