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

Module Impl

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

Import path

import codeql.rust.elements.internal.RefExprImpl

Classes

RefExpr

A reference expression. For example: rust let ref_const = &foo; let ref_mut = &mut foo; let raw_const: &mut i32 = &raw const foo; let raw_mut: &mut i32 = &raw mut foo;