Module ra_ap_rustc_pattern_analysis::pat
source · Expand description
As explained in crate::usefulness
, values and patterns are made from constructors applied to
fields. This file defines types that represent patterns in this way.
Structs§
- Values and patterns can be represented as a constructor applied to some fields. This represents a pattern in this form. This also uses interior mutability to keep track of whether the pattern has been found reachable during analysis. For this reason they cannot be cloned. A
DeconstructedPat
will almost always come from user input; the only exception are someWildcard
s introduced during specialization. - Same idea as
DeconstructedPat
, except this is a fictitious pattern built up for diagnostics purposes. As such they don’t use interning and can be cloned.