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

Wild

A wildward pattern: _.

AscribeUserType

Fields of AscribeUserType

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

x, ref x, x @ P, etc.

Fields of Binding

mutability: Mutabilityname: Symbolmode: BindingModevar: HirIdty: 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?

Variant

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

Fields of Variant

adt_def: &'tcx AdtDefsubsts: SubstsRef<'tcx>variant_index: VariantIdxsubpatterns: Vec<FieldPat<'tcx>>
Leaf

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

Fields of Leaf

subpatterns: Vec<FieldPat<'tcx>>
Deref

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

Fields of Deref

subpattern: Pat<'tcx>
Constant

One of the following:

Fields of Constant

value: &'tcx Const<'tcx>
Range(PatRange<'tcx>)

Tuple Fields of Range

0: PatRange<'tcx>
Slice

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 @ ..].

Fields of Slice

prefix: Vec<Pat<'tcx>>slice: Option<Pat<'tcx>>suffix: Vec<Pat<'tcx>>
Array

Fixed match against an array; irrefutable.

Fields of Array

prefix: Vec<Pat<'tcx>>slice: Option<Pat<'tcx>>suffix: Vec<Pat<'tcx>>
Or

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

Fields of Or

pats: Vec<Pat<'tcx>>

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

Size for each variant: