[][src]Enum syntex_syntax2::ast::PatKind

pub enum PatKind {
    Wild,
    Ident(BindingModeSpannedIdentOption<P<Pat>>),
    Struct(PathVec<Spanned<FieldPat>>, bool),
    TupleStruct(PathVec<P<Pat>>, Option<usize>),
    Path(Option<QSelf>, Path),
    Tuple(Vec<P<Pat>>, Option<usize>),
    Box(P<Pat>),
    Ref(P<Pat>, Mutability),
    Lit(P<Expr>),
    Range(P<Expr>, P<Expr>, RangeEnd),
    Slice(Vec<P<Pat>>, Option<P<Pat>>, Vec<P<Pat>>),
    Mac(Mac),
}

Variants

Wild

Represents a wildcard pattern (_)

Ident(BindingModeSpannedIdentOption<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(PathVec<Spanned<FieldPat>>, bool)

A struct or struct variant pattern, e.g. Variant {x, y, ..}. The bool is true in the presence of a ...

TupleStruct(PathVec<P<Pat>>, Option<usize>)

A tuple struct/variant pattern Variant(x, y, .., z). If the .. pattern fragment is present, then Option<usize> denotes its position. 0 <= position <= subpats.len()

Path(Option<QSelf>, Path)

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

Tuple(Vec<P<Pat>>, Option<usize>)

A tuple pattern (a, b). If the .. pattern fragment is present, then Option<usize> denotes its position. 0 <= position <= subpats.len()

Box(P<Pat>)

A box pattern

Ref(P<Pat>, Mutability)

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

Lit(P<Expr>)

A literal

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

A range pattern, e.g. 1...2 or 1..2

Slice(Vec<P<Pat>>, Option<P<Pat>>, Vec<P<Pat>>)

[a, b, ..i, y, z] is represented as: PatKind::Slice(box [a, b], Some(i), box [y, z])

Mac(Mac)

A macro pattern; pre-expansion

Trait Implementations

impl PartialEq<PatKind> for PatKind[src]

impl Eq for PatKind[src]

impl Clone for PatKind[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Hash for PatKind[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for PatKind[src]

impl<'de> Deserialize<'de> for PatKind[src]

impl Serialize for PatKind[src]

Auto Trait Implementations

impl !Send for PatKind

impl Unpin for PatKind

impl !Sync for PatKind

impl !UnwindSafe for PatKind

impl !RefUnwindSafe for PatKind

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]