pub enum PatKind<'tcx> {
    Wild,
    AscribeUserType {
        ascription: Ascription<'tcx>,
        subpattern: Box<Pat<'tcx>>,
    },
    Binding {
        mutability: Mutability,
        name: Symbol,
        mode: BindingMode,
        var: LocalVarId,
        ty: Ty<'tcx>,
        subpattern: Option<Box<Pat<'tcx>>>,
        is_primary: bool,
    },
    Variant {
        adt_def: AdtDef<'tcx>,
        substs: SubstsRef<'tcx>,
        variant_index: VariantIdx,
        subpatterns: Vec<FieldPat<'tcx>>,
    },
    Leaf {
        subpatterns: Vec<FieldPat<'tcx>>,
    },
    Deref {
        subpattern: Box<Pat<'tcx>>,
    },
    Constant {
        value: ConstantKind<'tcx>,
    },
    Range(Box<PatRange<'tcx>>),
    Slice {
        prefix: Box<[Box<Pat<'tcx>>]>,
        slice: Option<Box<Pat<'tcx>>>,
        suffix: Box<[Box<Pat<'tcx>>]>,
    },
    Array {
        prefix: Box<[Box<Pat<'tcx>>]>,
        slice: Option<Box<Pat<'tcx>>>,
        suffix: Box<[Box<Pat<'tcx>>]>,
    },
    Or {
        pats: Box<[Box<Pat<'tcx>>]>,
    },
}

Variants

Wild

A wildcard pattern: _.

AscribeUserType

Fields

ascription: Ascription<'tcx>
subpattern: Box<Pat<'tcx>>

Binding

Fields

mutability: Mutability
name: Symbol
ty: Ty<'tcx>
subpattern: Option<Box<Pat<'tcx>>>
is_primary: bool

Is this the leftmost occurrence of the binding, i.e., is var the HirId of this pattern?

x, ref x, x @ P, etc.

Variant

Fields

adt_def: AdtDef<'tcx>
substs: SubstsRef<'tcx>
variant_index: VariantIdx
subpatterns: Vec<FieldPat<'tcx>>

Foo(...) or Foo{...} or Foo, where Foo is a variant name from an ADT with multiple variants.

Leaf

Fields

subpatterns: Vec<FieldPat<'tcx>>

(...), Foo(...), Foo{...}, or Foo, where Foo is a variant name from an ADT with a single variant.

Deref

Fields

subpattern: Box<Pat<'tcx>>

box P, &P, &mut P, etc.

Constant

Fields

value: ConstantKind<'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 exhaustiveness 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 and Eq.

Range(Box<PatRange<'tcx>>)

Slice

Fields

prefix: Box<[Box<Pat<'tcx>>]>
slice: Option<Box<Pat<'tcx>>>
suffix: Box<[Box<Pat<'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 @ ..].

Array

Fields

prefix: Box<[Box<Pat<'tcx>>]>
slice: Option<Box<Pat<'tcx>>>
suffix: Box<[Box<Pat<'tcx>>]>

Fixed match against an array; irrefutable.

Or

Fields

pats: Box<[Box<Pat<'tcx>>]>

An or-pattern, e.g. p | q. Invariant: pats.len() >= 2.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
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 DepNodes 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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.

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: 56 bytes

Size for each variant:

  • Wild: 0 bytes
  • AscribeUserType: 47 bytes
  • Binding: 31 bytes
  • Variant: 47 bytes
  • Leaf: 31 bytes
  • Deref: 15 bytes
  • Constant: 55 bytes
  • Range: 15 bytes
  • Slice: 47 bytes
  • Array: 47 bytes
  • Or: 23 bytes