Enum rustc_hir::hir::StmtKind [−][src]
pub enum StmtKind<'hir> {
Local(&'hir Local<'hir>),
Item(ItemId),
Expr(&'hir Expr<'hir>),
Semi(&'hir Expr<'hir>),
}
Expand description
The contents of a statement.
Variants
Local(&'hir Local<'hir>)
A local (let
) binding.
Tuple Fields of Local
0: &'hir Local<'hir>
Item(ItemId)
An item binding.
Tuple Fields of Item
0: ItemId
Expr(&'hir Expr<'hir>)
An expression without a trailing semi-colon (must have unit type).
Tuple Fields of Expr
0: &'hir Expr<'hir>
Semi(&'hir Expr<'hir>)
An expression with a trailing semi-colon (may have any type).
Tuple Fields of Semi
0: &'hir Expr<'hir>
Trait Implementations
Auto Trait Implementations
impl<'hir> !RefUnwindSafe for StmtKind<'hir>
impl<'hir> !UnwindSafe for StmtKind<'hir>
Blanket Implementations
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: 16 bytes
Size for each variant:
Local
: 12 bytesItem
: 4 bytesExpr
: 12 bytesSemi
: 12 bytes