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

Module Impl

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

Import path

import codeql.rust.elements.internal.BoxPatImpl

Classes

BoxPat

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