Struct rustc_ast::ast::Block [−][src]
pub struct Block {
pub stmts: Vec<Stmt>,
pub id: NodeId,
pub rules: BlockCheckMode,
pub span: Span,
pub tokens: Option<LazyTokenStream>,
pub could_be_bare_literal: bool,
}
Expand description
A block ({ .. }
).
E.g., { .. }
as in fn foo() { .. }
.
Fields
stmts: Vec<Stmt>
The statements in the block.
id: NodeId
rules: BlockCheckMode
Distinguishes between unsafe { ... }
and { ... }
.
span: Span
tokens: Option<LazyTokenStream>
could_be_bare_literal: bool
The following isn’t a parse error, but will cause multiple errors in following stages.
let x = {
foo: var
};
#34255
Trait Implementations
This is true
if this AstLike
might support ‘custom’ (proc-macro) inner
attributes. Attributes like #![cfg]
and #![cfg_attr]
are not
considered ‘custom’ attributes Read more
Auto Trait Implementations
impl !RefUnwindSafe for Block
impl !UnwindSafe for Block
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 48 bytes