CodeQL library for Rust
codeql/rust-all 0.2.13 (changelog, source)
Search

Module Impl

INTERNAL: This module contains the customizable definition of IdentPat and should not be referenced directly.

Import path

import codeql.rust.elements.internal.IdentPatImpl

Classes

IdentPat

A binding pattern. For example: rust match x { Option::Some(y) => y, Option::None => 0, }; rust match x { y@Option::Some(_) => y, Option::None => 0, };