pub(crate) struct Witness<'p, 'tcx>(Vec<DeconstructedPat<'p, 'tcx>>);
Expand description

A witness of non-exhaustiveness for error reporting, represented as a list of patterns (in reverse order of construction) with wildcards inside to represent elements that can take any inhabitant of the type as a value.

A witness against a list of patterns should have the same types and length as the pattern matched against. Because Rust match is always against a single pattern, at the end the witness will have length 1, but in the middle of the algorithm, it can contain multiple patterns.

For example, if we are constructing a witness for the match against

struct Pair(Option<(u32, u32)>, bool);
match p {
   Pair(None, _) => {}
   Pair(_, false) => {}
}

We’ll perform the following steps:

  1. Start with an empty witness Witness(vec![])
  2. Push a witness true against the false Witness(vec![true])
  3. Push a witness Some(_) against the None Witness(vec![true, Some(_)])
  4. Apply the Pair constructor to the witnesses Witness(vec![Pair(Some(_), true)])

The final Pair(Some(_), true) is then the resulting witness.

Tuple Fields§

§0: Vec<DeconstructedPat<'p, 'tcx>>

Implementations§

source§

impl<'p, 'tcx> Witness<'p, 'tcx>

source

fn single_pattern(self) -> DeconstructedPat<'p, 'tcx>

Asserts that the witness contains a single pattern, and returns it.

source

fn apply_constructor( self, pcx: &PatCtxt<'_, 'p, 'tcx>, ctor: &Constructor<'tcx> ) -> Self

Constructs a partial witness for a pattern given a list of patterns expanded by the specialization step.

When a pattern P is discovered to be useful, this function is used bottom-up to reconstruct a complete witness, e.g., a pattern P’ that covers a subset of values, V, where each value in that set is not covered by any previously used patterns and is covered by the pattern P’. Examples:

left_ty: tuple of 3 elements pats: [10, 20, _] => (10, 20, _)

left_ty: struct X { a: (bool, &’static str), b: usize} pats: [(false, “foo”), 42] => X { a: (false, “foo”), b: 42 }

Trait Implementations§

source§

impl<'p, 'tcx> Debug for Witness<'p, 'tcx>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'p, 'tcx> !RefUnwindSafe for Witness<'p, 'tcx>

§

impl<'p, 'tcx> !Send for Witness<'p, 'tcx>

§

impl<'p, 'tcx> !Sync for Witness<'p, 'tcx>

§

impl<'p, 'tcx> Unpin for Witness<'p, 'tcx>

§

impl<'p, 'tcx> !UnwindSafe for Witness<'p, 'tcx>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::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: 24 bytes