Enum rustc_ast::ast::PatKind

source ·
pub enum PatKind {
Show 17 variants Wild, Ident(BindingAnnotation, Ident, Option<P<Pat>>), Struct(Option<P<QSelf>>, Path, ThinVec<PatField>, PatFieldsRest), TupleStruct(Option<P<QSelf>>, Path, ThinVec<P<Pat>>), Or(ThinVec<P<Pat>>), Path(Option<P<QSelf>>, Path), Tuple(ThinVec<P<Pat>>), Box(P<Pat>), Ref(P<Pat>, Mutability), Lit(P<Expr>), Range(Option<P<Expr>>, Option<P<Expr>>, Spanned<RangeEnd>), Slice(ThinVec<P<Pat>>), Rest, Never, Paren(P<Pat>), MacCall(P<MacCall>), Err(ErrorGuaranteed),
}
Expand description

All the different flavors of pattern that Rust recognizes.

Variants§

§

Wild

Represents a wildcard pattern (_).

§

Ident(BindingAnnotation, Ident, Option<P<Pat>>)

A PatKind::Ident may either be a new bound variable (ref mut binding @ OPT_SUBPATTERN), or a unit struct/variant pattern, or a const pattern (in the last two cases the third field must be None). Disambiguation cannot be done with parser alone, so it happens during name resolution.

§

Struct(Option<P<QSelf>>, Path, ThinVec<PatField>, PatFieldsRest)

A struct or struct variant pattern (e.g., Variant {x, y, ..}).

§

TupleStruct(Option<P<QSelf>>, Path, ThinVec<P<Pat>>)

A tuple struct/variant pattern (Variant(x, y, .., z)).

§

Or(ThinVec<P<Pat>>)

An or-pattern A | B | C. Invariant: pats.len() >= 2.

§

Path(Option<P<QSelf>>, Path)

A possibly qualified path pattern. Unqualified path patterns A::B::C can legally refer to variants, structs, constants or associated constants. Qualified path patterns <A>::B::C/<A as Trait>::B::C can only legally refer to associated constants.

§

Tuple(ThinVec<P<Pat>>)

A tuple pattern ((a, b)).

§

Box(P<Pat>)

A box pattern.

§

Ref(P<Pat>, Mutability)

A reference pattern (e.g., &mut (a, b)).

§

Lit(P<Expr>)

A literal.

§

Range(Option<P<Expr>>, Option<P<Expr>>, Spanned<RangeEnd>)

A range pattern (e.g., 1...2, 1..2, 1.., ..2, 1..=2, ..=2).

§

Slice(ThinVec<P<Pat>>)

A slice pattern [a, b, c].

§

Rest

A rest pattern ...

Syntactically it is valid anywhere.

Semantically however, it only has meaning immediately inside:

  • a slice pattern: [a, .., b],
  • a binding pattern immediately inside a slice pattern: [a, r @ ..],
  • a tuple pattern: (a, .., b),
  • a tuple struct/variant pattern: $path(a, .., b).

In all of these cases, an additional restriction applies, only one rest pattern may occur in the pattern sequences.

§

Never

§

Paren(P<Pat>)

Parentheses in patterns used for grouping (i.e., (PAT)).

§

MacCall(P<MacCall>)

A macro pattern; pre-expansion.

§

Err(ErrorGuaranteed)

Placeholder for a pattern that wasn’t syntactically well formed in some way.

Trait Implementations§

source§

impl Clone for PatKind

source§

fn clone(&self) -> PatKind

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PatKind

source§

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

Formats the value using the given formatter. Read more
source§

impl<__D: SpanDecoder> Decodable<__D> for PatKind

source§

fn decode(__decoder: &mut __D) -> Self

source§

impl<__E: SpanEncoder> Encodable<__E> for PatKind

source§

fn encode(&self, __encoder: &mut __E)

Auto Trait Implementations§

§

impl Freeze for PatKind

§

impl !RefUnwindSafe for PatKind

§

impl !Send for PatKind

§

impl !Sync for PatKind

§

impl Unpin for PatKind

§

impl !UnwindSafe for PatKind

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where 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> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where 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 T
where 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.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

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

Size for each variant:

  • Wild: 0 bytes
  • Ident: 23 bytes
  • Struct: 47 bytes
  • TupleStruct: 47 bytes
  • Or: 15 bytes
  • Path: 39 bytes
  • Tuple: 15 bytes
  • Box: 15 bytes
  • Ref: 15 bytes
  • Lit: 15 bytes
  • Range: 31 bytes
  • Slice: 15 bytes
  • Rest: 0 bytes
  • Never: 0 bytes
  • Paren: 15 bytes
  • MacCall: 15 bytes
  • Err: 0 bytes