pub enum FunctionStatement {
Label {
label: Label,
span: Span,
},
Directive {
directive: StatementDirective,
span: Span,
},
Instruction {
instruction: Instruction,
span: Span,
},
Block {
statements: Vec<FunctionStatement>,
span: Span,
},
}Expand description
Nested statement block enclosed in braces. Executable items that appear within a function body.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FunctionStatement
impl Clone for FunctionStatement
Source§fn clone(&self) -> FunctionStatement
fn clone(&self) -> FunctionStatement
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 FunctionStatement
impl Debug for FunctionStatement
Source§impl PartialEq for FunctionStatement
impl PartialEq for FunctionStatement
Source§impl PtxParser for FunctionStatement
impl PtxParser for FunctionStatement
Source§fn parse() -> impl Fn(&mut PtxTokenStream<'_>) -> Result<(Self, Span), PtxParseError>
fn parse() -> impl Fn(&mut PtxTokenStream<'_>) -> Result<(Self, Span), PtxParseError>
Returns a parser function that can parse an instance of
Self.Source§impl PtxUnparser for FunctionStatement
impl PtxUnparser for FunctionStatement
Source§impl Spanned for FunctionStatement
impl Spanned for FunctionStatement
Source§impl TreeDisplay for FunctionStatement
impl TreeDisplay for FunctionStatement
Source§fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
Display this node in tree format. Read more
impl StructuralPartialEq for FunctionStatement
Auto Trait Implementations§
impl Freeze for FunctionStatement
impl RefUnwindSafe for FunctionStatement
impl Send for FunctionStatement
impl Sync for FunctionStatement
impl Unpin for FunctionStatement
impl UnwindSafe for FunctionStatement
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