Skip to main content

PatKind

Enum PatKind 

Source
pub enum PatKind {
    Wild,
    Ascription {
        pat: Pat,
        ty: SpannedTy,
    },
    Or {
        sub_pats: Vec<Pat>,
    },
    Array {
        args: Vec<Pat>,
    },
    Deref {
        sub_pat: Pat,
    },
    Constant {
        lit: Literal,
    },
    Binding {
        mutable: bool,
        var: LocalId,
        mode: BindingMode,
        sub_pat: Option<Pat>,
    },
    Construct {
        constructor: GlobalId,
        is_record: bool,
        is_struct: bool,
        fields: Vec<(GlobalId, Pat)>,
    },
    Resugared(ResugaredPatKind),
    Error(ErrorNode),
}
Expand description

Represents the various kinds of patterns.

Variants§

§

Wild

Wildcard pattern

§Example:

_

§

Ascription

An ascription pattern

§Example:

p : ty

Fields

§pat: Pat

The inner pattern (p in the example)

§ty: SpannedTy

The (spanned) type ascription (ty in the example)

§

Or

An or pattern

§Example:

p | q Always contains at least 2 sub-patterns

Fields

§sub_pats: Vec<Pat>

A vector of sub-patterns

§

Array

An array pattern

§Example:

[p, q]

Fields

§args: Vec<Pat>

A vector of patterns

§

Deref

A dereference pattern

§Example:

&p

Fields

§sub_pat: Pat

The inner pattern

§

Constant

A constant pattern

§Example:

1

Fields

§lit: Literal

The literal

§

Binding

A variable binding.

§Examples:

  • xmutable: false
  • mut xmutable: true
  • ref xmode: ByRef(Shared)

Fields

§mutable: bool

Is the binding mutable? E.g. x is not mutable, mut x is.

§var: LocalId

The variable introduced by the binding pattern.

§mode: BindingMode

The binding mode, e.g. [BindingMode::Shared] for ref x.

§sub_pat: Option<Pat>

The sub-pattern, if any. For example, this is Some(inner_pat) for the pattern variable @ inner_pat.

§

Construct

A constructor pattern

§Example:

Foo(x)

Fields

§constructor: GlobalId

The identifier of the constructor we are matching

§is_record: bool

Are we constructing a record? E.g. a struct or a variant with named fields.

§is_struct: bool

Is this a struct? (meaning, not a variant from an enum)

§fields: Vec<(GlobalId, Pat)>

A list of fields.

§

Resugared(ResugaredPatKind)

A resugared pattern. This variant is introduced before printing only. Phases must not produce this variant.

§

Error(ErrorNode)

Fallback constructor to carry errors.

Implementations§

Source§

impl PatKind

Source

pub fn var_pat(var: LocalId) -> Self

Pattern for binding to a single variable

Source

pub fn promote(self, ty: Ty, span: Span) -> Pat

Promote to a Pat

Trait Implementations§

Source§

impl AnyFragment for PatKind

Source§

fn type_id() -> FragmentTypeId

Get a type identifier for this fragment.
Source§

fn as_fragment<'a>(&'a self, type_id: FragmentTypeId) -> Option<FragmentRef<'a>>

Coerce as a fragment reference.
Source§

fn as_owned_fragment(&self, type_id: FragmentTypeId) -> Option<Fragment>

Coerce as an owned fragment.
Source§

impl AstVisitable for PatKind

Source§

fn drive_map<V: AstVisitorMut>(&mut self, v: &mut V)

Recursively visit this type with the provided visitor. This calls the visitor’s visit_$any method if it exists, otherwise visit_inner.
Source§

fn drive<V: AstVisitor>(&self, v: &mut V)

Recursively visit this type with the provided visitor. This calls the visitor’s visit_$any method if it exists, otherwise visit_inner.
Source§

impl AstVisitable for PatKind

Source§

fn drive<V: AstEarlyExitVisitor>(&self, v: &mut V) -> ControlFlow<V::Break>

Recursively visit this type with the provided visitor. This calls the visitor’s visit_$any method if it exists, otherwise visit_inner.
Source§

fn drive_mut<V: AstEarlyExitVisitorMut>( &mut self, v: &mut V, ) -> ControlFlow<V::Break>

Recursively visit this type with the provided visitor. This calls the visitor’s visit_$any method if it exists, otherwise visit_inner.
Source§

impl Clone for PatKind

Source§

fn clone(&self) -> PatKind

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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<'de> Deserialize<'de> for PatKind

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'s, V> Drive<'s, V> for PatKind
where V: Visitor + Visit<'s, Pat> + Visit<'s, SpannedTy> + Visit<'s, Vec<Pat>> + Visit<'s, Literal> + Visit<'s, bool> + Visit<'s, LocalId> + Visit<'s, BindingMode> + Visit<'s, Option<Pat>> + Visit<'s, GlobalId> + Visit<'s, Vec<(GlobalId, Pat)>> + Visit<'s, ResugaredPatKind> + Visit<'s, ErrorNode>,

Source§

fn drive_inner(&'s self, visitor: &mut V) -> ControlFlow<V::Break>

Call v.visit() on the immediate contents of self.
Source§

impl<'s, V> DriveMut<'s, V> for PatKind

Source§

fn drive_inner_mut(&'s mut self, visitor: &mut V) -> ControlFlow<V::Break>

Call v.visit() on the immediate contents of self.
Source§

impl Eq for PatKind

Source§

impl<'lt> From<&'lt PatKind> for FragmentRef<'lt>

Source§

fn from(fragment: &'lt PatKind) -> Self

Converts to this type from the input type.
Source§

impl From<PatKind> for Fragment

Source§

fn from(fragment: PatKind) -> Self

Converts to this type from the input type.
Source§

impl Hash for PatKind

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

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

Feeds a slice of this type into the given Hasher. Read more
Source§

impl JsonSchema for PatKind

Source§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
Source§

fn schema_id() -> Cow<'static, str>

Returns a string that uniquely identifies the schema produced by this type. Read more
Source§

fn json_schema(generator: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
Source§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
Source§

impl Ord for PatKind

Source§

fn cmp(&self, other: &PatKind) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for PatKind

Source§

fn eq(&self, other: &PatKind) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialOrd for PatKind

Source§

fn partial_cmp(&self, other: &PatKind) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for PatKind

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for PatKind

Auto Trait Implementations§

Blanket Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

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

Source§

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

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> ExtensionPoint for T
where T: Debug + for<'a> Deserialize<'a> + Serialize + JsonSchema + Clone,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> IsBody for T
where T: Clone + 'static,

Source§

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

Source§

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>,

Source§

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>,

Source§

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