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

Module GenericParamList

This module provides the public class GenericParamList.

Import path

import codeql.rust.elements.GenericParamList

Imports

AstNode

This module provides the public class AstNode.

GenericParam

This module provides the public class GenericParam.

Aliases

GenericParamList

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