Enum syntex_syntax::ast::MacStmtStyle
[−]
[src]
pub enum MacStmtStyle { MacStmtWithSemicolon, MacStmtWithBraces, MacStmtWithoutBraces, }
Variants
MacStmtWithSemicolon | The macro statement had a trailing semicolon, e.g. |
MacStmtWithBraces | The macro statement had braces; e.g. foo! { ... } |
MacStmtWithoutBraces | The macro statement had parentheses or brackets and no semicolon; e.g.
|