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

Module Impl

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

Import path

import codeql.rust.elements.internal.GenericParamListImpl

Classes

GenericParamList

A list of generic parameters. For example: rust fn f<A, B>(a: A, b: B) {} // ^^^^^^ type Foo<T1, T2> = (T1, T2); // ^^^^^^^^