Enum rustc_middle::thir::PatKind [−][src]
pub enum PatKind<'tcx> {
Wild,
AscribeUserType {
ascription: Ascription<'tcx>,
subpattern: Pat<'tcx>,
},
Binding {
mutability: Mutability,
name: Symbol,
mode: BindingMode,
var: HirId,
ty: Ty<'tcx>,
subpattern: Option<Pat<'tcx>>,
is_primary: bool,
},
Variant {
adt_def: &'tcx AdtDef,
substs: SubstsRef<'tcx>,
variant_index: VariantIdx,
subpatterns: Vec<FieldPat<'tcx>>,
},
Leaf {
subpatterns: Vec<FieldPat<'tcx>>,
},
Deref {
subpattern: Pat<'tcx>,
},
Constant {
value: &'tcx Const<'tcx>,
},
Range(PatRange<'tcx>),
Slice {
prefix: Vec<Pat<'tcx>>,
slice: Option<Pat<'tcx>>,
suffix: Vec<Pat<'tcx>>,
},
Array {
prefix: Vec<Pat<'tcx>>,
slice: Option<Pat<'tcx>>,
suffix: Vec<Pat<'tcx>>,
},
Or {
pats: Vec<Pat<'tcx>>,
},
}
Variants
A wildward pattern: _
.
Fields of AscribeUserType
ascription: Ascription<'tcx>
subpattern: Pat<'tcx>
x
, ref x
, x @ P
, etc.
Fields of Binding
mutability: Mutability
name: Symbol
mode: BindingMode
var: HirId
ty: Ty<'tcx>
subpattern: Option<Pat<'tcx>>
is_primary: bool
Is this the leftmost occurrence of the binding, i.e., is var
the
HirId
of this pattern?
Foo(...)
or Foo{...}
or Foo
, where Foo
is a variant name from an ADT with
multiple variants.
Fields of Variant
adt_def: &'tcx AdtDef
substs: SubstsRef<'tcx>
variant_index: VariantIdx
subpatterns: Vec<FieldPat<'tcx>>
(...)
, Foo(...)
, Foo{...}
, or Foo
, where Foo
is a variant name from an ADT with
a single variant.
box P
, &P
, &mut P
, etc.
Fields of Deref
subpattern: Pat<'tcx>
One of the following:
&str
, which will be handled as a string pattern and thus exhaustiveness checking will detect if you use the same string twice in different patterns.- integer, bool, char or float, which will be handled by exhaustivenes to cover exactly
its own value, similar to
&str
, but these values are much simpler. - Opaque constants, that must not be matched structurally. So anything that does not derive
PartialEq
andEq
.
Fields of Constant
value: &'tcx Const<'tcx>
Range(PatRange<'tcx>)
Tuple Fields of Range
0: PatRange<'tcx>
Matches against a slice, checking the length and extracting elements.
irrefutable when there is a slice pattern and both prefix
and suffix
are empty.
e.g., &[ref xs @ ..]
.
Fixed match against an array; irrefutable.
An or-pattern, e.g. p | q
.
Invariant: pats.len() >= 2
.
Trait Implementations
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for PatKind<'tcx>
impl<'tcx> !UnwindSafe for PatKind<'tcx>
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it. 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: 104 bytes
Size for each variant:
Wild
: 0 bytesAscribeUserType
: 103 bytesBinding
: 47 bytesVariant
: 47 bytesLeaf
: 31 bytesDeref
: 31 bytesConstant
: 15 bytesRange
: 31 bytesSlice
: 79 bytesArray
: 79 bytesOr
: 31 bytes