pub(crate) struct DeconstructedPat<'p, 'tcx> {
    ctor: Constructor<'tcx>,
    fields: Fields<'p, 'tcx>,
    ty: Ty<'tcx>,
    span: Span,
    reachable: Cell<bool>,
}
Expand description

Values and patterns can be represented as a constructor applied to some fields. This represents a pattern in this form. This also keeps track of whether the pattern has been found reachable during analysis. For this reason we should be careful not to clone patterns for which we care about that. Use clone_and_forget_reachability if you’re sure.

Fields

ctor: Constructor<'tcx>fields: Fields<'p, 'tcx>ty: Ty<'tcx>span: Spanreachable: Cell<bool>

Implementations

Construct a pattern that matches everything that starts with this constructor. For example, if ctor is a Constructor::Variant for Option::Some, we get the pattern Some(_).

Clone this value. This method emphasizes that cloning loses reachability information and should be done carefully.

Specialize this pattern with a constructor. other_ctor can be different from self.ctor, but must be covered by it.

We keep track for each pattern if it was ever reachable during the analysis. This is used with unreachable_spans to report unreachable subpatterns arising from or patterns.

Report the spans of subpatterns that were not reachable, if any.

Trait Implementations

This is mostly copied from the Pat impl. This is best effort and not good enough for a Display impl.

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

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