pub enum Constructor<Cx: PatCx> {
Show 17 variants
Struct,
Variant(Cx::VariantIdx),
Ref,
Slice(Slice),
UnionField,
Bool(bool),
IntRange(IntRange),
F32Range(IeeeFloat<SingleS>, IeeeFloat<SingleS>, RangeEnd),
F64Range(IeeeFloat<DoubleS>, IeeeFloat<DoubleS>, RangeEnd),
Str(Cx::StrLit),
Opaque(OpaqueId),
Or,
Wildcard,
NonExhaustive,
Hidden,
Missing,
PrivateUninhabited,
}
Expand description
A value can be decomposed into a constructor applied to some fields. This struct represents
the constructor. See also Fields
.
pat_constructor
retrieves the constructor corresponding to a pattern.
specialize_constructor
returns the list of fields corresponding to a pattern, given a
constructor. Constructor::apply
reconstructs the pattern from a pair of Constructor
and
Fields
.
Variants§
Struct
Tuples and structs.
Variant(Cx::VariantIdx)
Enum variants.
Ref
References
Slice(Slice)
Array and slice patterns.
UnionField
Union field accesses.
Bool(bool)
Booleans
IntRange(IntRange)
Ranges of integer literal values (2
, 2..=5
or 2..5
).
F32Range(IeeeFloat<SingleS>, IeeeFloat<SingleS>, RangeEnd)
Ranges of floating-point literal values (2.0..=5.2
).
F64Range(IeeeFloat<DoubleS>, IeeeFloat<DoubleS>, RangeEnd)
Str(Cx::StrLit)
String literals. Strings are not quite the same as &[u8]
so we treat them separately.
Opaque(OpaqueId)
Constants that must not be matched structurally. They are treated as black boxes for the
purposes of exhaustiveness: we must not inspect them, and they don’t count towards making a
match exhaustive.
Carries an id that must be unique within a match. We need this to ensure the invariants of
SplitConstructorSet
.
Or
Or-pattern.
Wildcard
Wildcard pattern.
NonExhaustive
Fake extra constructor for enums that aren’t allowed to be matched exhaustively. Also used
for those types for which we cannot list constructors explicitly, like f64
and str
.
Hidden
Fake extra constructor for variants that should not be mentioned in diagnostics.
We use this for variants behind an unstable gate as well as
#[doc(hidden)]
ones.
Missing
Fake extra constructor for constructors that are not seen in the matrix, as explained at the top of the file.
PrivateUninhabited
Fake extra constructor that indicates and empty field that is private. When we encounter one we skip the column entirely so we don’t observe its emptiness. Only used for specialization.
Implementations§
source§impl<Cx: PatCx> Constructor<Cx>
impl<Cx: PatCx> Constructor<Cx>
pub(crate) fn is_non_exhaustive(&self) -> bool
pub(crate) fn as_variant(&self) -> Option<Cx::VariantIdx>
fn as_bool(&self) -> Option<bool>
pub(crate) fn as_int_range(&self) -> Option<&IntRange>
fn as_slice(&self) -> Option<Slice>
Trait Implementations§
source§impl<Cx: PatCx> Clone for Constructor<Cx>
impl<Cx: PatCx> Clone for Constructor<Cx>
Auto Trait Implementations§
impl<Cx> DynSend for Constructor<Cx>
impl<Cx> DynSync for Constructor<Cx>
impl<Cx> Freeze for Constructor<Cx>
impl<Cx> RefUnwindSafe for Constructor<Cx>
impl<Cx> Send for Constructor<Cx>
impl<Cx> Sync for Constructor<Cx>
impl<Cx> Unpin for Constructor<Cx>
impl<Cx> UnwindSafe for Constructor<Cx>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
§impl<T> Filterable for T
impl<T> Filterable for T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<'tcx, T> ToPredicate<'tcx, T> for T
impl<'tcx, T> ToPredicate<'tcx, T> for T
fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> T
source§impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed ) -> T
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSendSync for T
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.