Enum rustc::hir::PatKind [−][src]
pub enum PatKind {
Wild,
Binding(BindingAnnotation, NodeId, Spanned<Name>, Option<P<Pat>>),
Struct(QPath, HirVec<Spanned<FieldPat>>, bool),
TupleStruct(QPath, HirVec<P<Pat>>, Option<usize>),
Path(QPath),
Tuple(HirVec<P<Pat>>, Option<usize>),
Box(P<Pat>),
Ref(P<Pat>, Mutability),
Lit(P<Expr>),
Range(P<Expr>, P<Expr>, RangeEnd),
Slice(HirVec<P<Pat>>, Option<P<Pat>>, HirVec<P<Pat>>),
}🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Variants
Wild🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Represents a wildcard pattern (_)
Binding(BindingAnnotation, NodeId, Spanned<Name>, Option<P<Pat>>)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
A fresh binding ref mut binding @ OPT_SUBPATTERN.
The NodeId is the canonical ID for the variable being bound,
e.g. in Ok(x) | Err(x), both x use the same canonical ID,
which is the pattern ID of the first x.
Struct(QPath, HirVec<Spanned<FieldPat>>, bool)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
A struct or struct variant pattern, e.g. Variant {x, y, ..}.
The bool is true in the presence of a ...
TupleStruct(QPath, HirVec<P<Pat>>, Option<usize>)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
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(QPath)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
A path pattern for an unit struct/variant or a (maybe-associated) constant.
Tuple(HirVec<P<Pat>>, Option<usize>)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
A tuple pattern (a, b).
If the .. pattern fragment is present, then Option<usize> denotes its position.
0 <= position <= subpats.len()
Box(P<Pat>)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
A box pattern
Ref(P<Pat>, Mutability)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
A reference pattern, e.g. &mut (a, b)
Lit(P<Expr>)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
A literal
Range(P<Expr>, P<Expr>, RangeEnd)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
A range pattern, e.g. 1...2 or 1..2
Slice(HirVec<P<Pat>>, Option<P<Pat>>, HirVec<P<Pat>>)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
[a, b, ..i, y, z] is represented as:
PatKind::Slice(box [a, b], Some(i), box [y, z])
Trait Implementations
impl Clone for PatKind[src]
impl Clone for PatKindfn clone(&self) -> PatKind[src]
fn clone(&self) -> PatKindReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialEq for PatKind[src]
impl PartialEq for PatKindfn eq(&self, other: &PatKind) -> bool[src]
fn eq(&self, other: &PatKind) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &PatKind) -> bool[src]
fn ne(&self, other: &PatKind) -> boolThis method tests for !=.
impl Eq for PatKind[src]
impl Eq for PatKindfn assert_receiver_is_total_eq(&self)[src]
fn assert_receiver_is_total_eq(&self)impl Encodable for PatKind[src]
impl Encodable for PatKindfn encode<__S: Encoder>(&self, s: &mut __S) -> Result<(), __S::Error>[src]
fn encode<__S: Encoder>(&self, s: &mut __S) -> Result<(), __S::Error>🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
impl Decodable for PatKind[src]
impl Decodable for PatKindfn decode<__D: Decoder>(d: &mut __D) -> Result<PatKind, __D::Error>[src]
fn decode<__D: Decoder>(d: &mut __D) -> Result<PatKind, __D::Error>🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
impl Hash for PatKind[src]
impl Hash for PatKindfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for PatKind[src]
impl Debug for PatKindfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for PatKind[src]
impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for PatKindfn hash_stable<W: StableHasherResult>(
&self,
__ctx: &mut StableHashingContext<'a>,
__hasher: &mut StableHasher<W>
)[src]
fn hash_stable<W: StableHasherResult>(
&self,
__ctx: &mut StableHashingContext<'a>,
__hasher: &mut StableHasher<W>
)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?