Enum rustc_hir::PatKind [−][src]
pub enum PatKind<'hir> {
Wild,
Binding(BindingAnnotation, HirId, Ident, Option<&'hir Pat<'hir>>),
Struct(QPath<'hir>, &'hir [PatField<'hir>], bool),
TupleStruct(QPath<'hir>, &'hir [Pat<'hir>], Option<usize>),
Or(&'hir [Pat<'hir>]),
Path(QPath<'hir>),
Tuple(&'hir [Pat<'hir>], Option<usize>),
Box(&'hir Pat<'hir>),
Ref(&'hir Pat<'hir>, Mutability),
Lit(&'hir Expr<'hir>),
Range(Option<&'hir Expr<'hir>>, Option<&'hir Expr<'hir>>, RangeEnd),
Slice(&'hir [Pat<'hir>], Option<&'hir Pat<'hir>>, &'hir [Pat<'hir>]),
}
Variants
Represents a wildcard pattern (i.e., _
).
Binding(BindingAnnotation, HirId, Ident, Option<&'hir Pat<'hir>>)
A fresh binding ref mut binding @ OPT_SUBPATTERN
.
The HirId
is the canonical ID for the variable being bound,
(e.g., in Ok(x) | Err(x)
, both x
use the same canonical ID),
which is the pattern ID of the first x
.
Tuple Fields of Binding
A struct or struct variant pattern (e.g., Variant {x, y, ..}
).
The bool
is true
in the presence of a ..
.
A tuple struct/variant pattern Variant(x, y, .., z)
.
If the ..
pattern fragment is present, then Option<usize>
denotes its position.
0 <= position <= subpats.len()
An or-pattern A | B | C
.
Invariant: pats.len() >= 2
.
Path(QPath<'hir>)
A path pattern for a unit struct/variant or a (maybe-associated) constant.
Tuple Fields of Path
0: QPath<'hir>
A tuple pattern (e.g., (a, b)
).
If the ..
pattern fragment is present, then Option<usize>
denotes its position.
0 <= position <= subpats.len()
Box(&'hir Pat<'hir>)
A box
pattern.
Tuple Fields of Box
0: &'hir Pat<'hir>
Ref(&'hir Pat<'hir>, Mutability)
A reference pattern (e.g., &mut (a, b)
).
Tuple Fields of Ref
0: &'hir Pat<'hir>
1: Mutability
Lit(&'hir Expr<'hir>)
A literal.
Tuple Fields of Lit
0: &'hir Expr<'hir>
A range pattern (e.g., 1..=2
or 1..2
).
A slice pattern, [before_0, ..., before_n, (slice, after_0, ..., after_n)?]
.
Here, slice
is lowered from the syntax ($binding_mode $ident @)? ..
.
If slice
exists, then after
can be non-empty.
The representation for e.g., [a, b, .., c, d]
is:
PatKind::Slice([Binding(a), Binding(b)], Some(Wild), [Binding(c), Binding(d)])
Trait Implementations
Auto Trait Implementations
impl<'hir> !RefUnwindSafe for PatKind<'hir>
impl<'hir> !UnwindSafe for PatKind<'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: 64 bytes
Size for each variant:
Wild
: 0 bytesBinding
: 31 bytesStruct
: 47 bytesTupleStruct
: 63 bytesOr
: 23 bytesPath
: 31 bytesTuple
: 39 bytesBox
: 15 bytesRef
: 15 bytesLit
: 15 bytesRange
: 23 bytesSlice
: 47 bytes