Struct syntex_syntax::ast::Block
[−]
[src]
pub struct Block {
pub stmts: Vec<P<Stmt>>,
pub expr: Option<P<Expr>>,
pub id: NodeId,
pub rules: BlockCheckMode,
pub span: Span,
}Fields
stmts | Statements in a block |
expr | An expression at the end of the block without a semicolon, if any |
id | |
rules | Distinguishes between |
span |