mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-30 06:53:27 +00:00
38 lines
2.6 KiB
Rust
38 lines
2.6 KiB
Rust
|
//! This module contains paths to types and functions Clippy needs to know about.
|
||
|
|
||
|
pub const BEGIN_UNWIND: [&'static str; 3] = ["std", "rt", "begin_unwind"];
|
||
|
pub const BOX_NEW: [&'static str; 4] = ["std", "boxed", "Box", "new"];
|
||
|
pub const BOX: [&'static str; 3] = ["std", "boxed", "Box"];
|
||
|
pub const BTREEMAP_ENTRY: [&'static str; 4] = ["collections", "btree", "map", "Entry"];
|
||
|
pub const BTREEMAP: [&'static str; 4] = ["collections", "btree", "map", "BTreeMap"];
|
||
|
pub const CLONE: [&'static str; 3] = ["clone", "Clone", "clone"];
|
||
|
pub const CLONE_TRAIT: [&'static str; 2] = ["clone", "Clone"];
|
||
|
pub const COW: [&'static str; 3] = ["collections", "borrow", "Cow"];
|
||
|
pub const CSTRING_NEW: [&'static str; 4] = ["std", "ffi", "CString", "new"];
|
||
|
pub const DEBUG_FMT_METHOD: [&'static str; 4] = ["std", "fmt", "Debug", "fmt"];
|
||
|
pub const DEFAULT_TRAIT: [&'static str; 3] = ["core", "default", "Default"];
|
||
|
pub const DISPLAY_FMT_METHOD: [&'static str; 4] = ["std", "fmt", "Display", "fmt"];
|
||
|
pub const DROP: [&'static str; 3] = ["core", "mem", "drop"];
|
||
|
pub const FMT_ARGUMENTS_NEWV1: [&'static str; 4] = ["std", "fmt", "Arguments", "new_v1"];
|
||
|
pub const FMT_ARGUMENTV1_NEW: [&'static str; 4] = ["std", "fmt", "ArgumentV1", "new"];
|
||
|
pub const HASHMAP_ENTRY: [&'static str; 5] = ["std", "collections", "hash", "map", "Entry"];
|
||
|
pub const HASHMAP: [&'static str; 5] = ["std", "collections", "hash", "map", "HashMap"];
|
||
|
pub const HASH: [&'static str; 2] = ["hash", "Hash"];
|
||
|
pub const IO_PRINT: [&'static str; 3] = ["std", "io", "_print"];
|
||
|
pub const LL: [&'static str; 3] = ["collections", "linked_list", "LinkedList"];
|
||
|
pub const MUTEX: [&'static str; 4] = ["std", "sync", "mutex", "Mutex"];
|
||
|
pub const OPEN_OPTIONS: [&'static str; 3] = ["std", "fs", "OpenOptions"];
|
||
|
pub const OPTION: [&'static str; 3] = ["core", "option", "Option"];
|
||
|
pub const RANGE_FROM: [&'static str; 3] = ["std", "ops", "RangeFrom"];
|
||
|
pub const RANGE_FULL: [&'static str; 3] = ["std", "ops", "RangeFull"];
|
||
|
pub const RANGE_INCLUSIVE_NON_EMPTY: [&'static str; 4] = ["std", "ops", "RangeInclusive", "NonEmpty"];
|
||
|
pub const RANGE: [&'static str; 3] = ["std", "ops", "Range"];
|
||
|
pub const RANGE_TO_INCLUSIVE: [&'static str; 3] = ["std", "ops", "RangeToInclusive"];
|
||
|
pub const RANGE_TO: [&'static str; 3] = ["std", "ops", "RangeTo"];
|
||
|
pub const REGEX_NEW: [&'static str; 3] = ["regex", "Regex", "new"];
|
||
|
pub const RESULT: [&'static str; 3] = ["core", "result", "Result"];
|
||
|
pub const STRING: [&'static str; 3] = ["collections", "string", "String"];
|
||
|
pub const TRANSMUTE: [&'static str; 4] = ["core", "intrinsics", "", "transmute"];
|
||
|
pub const VEC_FROM_ELEM: [&'static str; 3] = ["std", "vec", "from_elem"];
|
||
|
pub const VEC: [&'static str; 3] = ["collections", "vec", "Vec"];
|