about summary refs log tree commit diff
path: root/clippy_lints/src/utils/constants.rs
blob: 522932f054d894eef06d81b7a53203fc255f9d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module contains some useful constants.

#![deny(clippy::missing_docs_in_private_items)]

/// List of the built-in types names.
///
/// See also [the reference][reference-types] for a list of such types.
///
/// [reference-types]: https://doc.rust-lang.org/reference/types.html
pub const BUILTIN_TYPES: &[&str] = &[
    "i8", "u8", "i16", "u16", "i32", "u32", "i64", "u64", "i128", "u128", "isize", "usize", "f32", "f64", "bool",
    "str", "char",
];