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

Module Impl

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

Import path

import codeql.rust.elements.internal.StructExprImpl

Classes

StructExpr

A struct expression. For example: rust let first = Foo { a: 1, b: 2 }; let second = Foo { a: 2, ..first }; Foo { a: 1, b: 2 }[2] = 10; Foo { .. } = second;