]> git.lizzy.rs Git - rust.git/blob - clippy_utils/src/paths.rs
Remove all usages of `match_path`, `match_qpath` and `match_path_ast` except the...
[rust.git] / clippy_utils / src / paths.rs
1 //! This module contains paths to types and functions Clippy needs to know
2 //! about.
3 //!
4 //! Whenever possible, please consider diagnostic items over hardcoded paths.
5 //! See <https://github.com/rust-lang/rust-clippy/issues/5393> for more information.
6
7 pub const ANY_TRAIT: [&str; 3] = ["core", "any", "Any"];
8 pub const ARC_PTR_EQ: [&str; 4] = ["alloc", "sync", "Arc", "ptr_eq"];
9 pub const ASMUT_TRAIT: [&str; 3] = ["core", "convert", "AsMut"];
10 pub const ASREF_TRAIT: [&str; 3] = ["core", "convert", "AsRef"];
11 pub(super) const BEGIN_PANIC: [&str; 3] = ["std", "panicking", "begin_panic"];
12 pub(super) const BEGIN_PANIC_FMT: [&str; 3] = ["std", "panicking", "begin_panic_fmt"];
13 pub const BINARY_HEAP: [&str; 4] = ["alloc", "collections", "binary_heap", "BinaryHeap"];
14 pub const BORROW_TRAIT: [&str; 3] = ["core", "borrow", "Borrow"];
15 pub const BTREEMAP: [&str; 5] = ["alloc", "collections", "btree", "map", "BTreeMap"];
16 pub const BTREEMAP_ENTRY: [&str; 6] = ["alloc", "collections", "btree", "map", "entry", "Entry"];
17 pub const BTREESET: [&str; 5] = ["alloc", "collections", "btree", "set", "BTreeSet"];
18 pub const CLONE_TRAIT_METHOD: [&str; 4] = ["core", "clone", "Clone", "clone"];
19 pub const CMP_MAX: [&str; 3] = ["core", "cmp", "max"];
20 pub const CMP_MIN: [&str; 3] = ["core", "cmp", "min"];
21 pub const COW: [&str; 3] = ["alloc", "borrow", "Cow"];
22 pub const CSTRING_AS_C_STR: [&str; 5] = ["std", "ffi", "c_str", "CString", "as_c_str"];
23 pub const DEFAULT_TRAIT: [&str; 3] = ["core", "default", "Default"];
24 pub const DEFAULT_TRAIT_METHOD: [&str; 4] = ["core", "default", "Default", "default"];
25 pub const DEREF_MUT_TRAIT_METHOD: [&str; 5] = ["core", "ops", "deref", "DerefMut", "deref_mut"];
26 pub const DEREF_TRAIT_METHOD: [&str; 5] = ["core", "ops", "deref", "Deref", "deref"];
27 pub const DIR_BUILDER: [&str; 3] = ["std", "fs", "DirBuilder"];
28 pub const DISPLAY_FMT_METHOD: [&str; 4] = ["core", "fmt", "Display", "fmt"];
29 pub const DISPLAY_TRAIT: [&str; 3] = ["core", "fmt", "Display"];
30 pub const DOUBLE_ENDED_ITERATOR: [&str; 4] = ["core", "iter", "traits", "DoubleEndedIterator"];
31 pub const DROP: [&str; 3] = ["core", "mem", "drop"];
32 pub const DURATION: [&str; 3] = ["core", "time", "Duration"];
33 #[cfg(feature = "internal-lints")]
34 pub const EARLY_CONTEXT: [&str; 2] = ["rustc_lint", "EarlyContext"];
35 pub const EXIT: [&str; 3] = ["std", "process", "exit"];
36 pub const F32_EPSILON: [&str; 4] = ["core", "f32", "<impl f32>", "EPSILON"];
37 pub const F64_EPSILON: [&str; 4] = ["core", "f64", "<impl f64>", "EPSILON"];
38 pub const FILE: [&str; 3] = ["std", "fs", "File"];
39 pub const FILE_TYPE: [&str; 3] = ["std", "fs", "FileType"];
40 pub const FMT_ARGUMENTS_NEW_V1: [&str; 4] = ["core", "fmt", "Arguments", "new_v1"];
41 pub const FMT_ARGUMENTS_NEW_V1_FORMATTED: [&str; 4] = ["core", "fmt", "Arguments", "new_v1_formatted"];
42 pub const FMT_ARGUMENTV1_NEW: [&str; 4] = ["core", "fmt", "ArgumentV1", "new"];
43 pub const FROM_FROM: [&str; 4] = ["core", "convert", "From", "from"];
44 pub const FROM_ITERATOR: [&str; 5] = ["core", "iter", "traits", "collect", "FromIterator"];
45 pub const FROM_ITERATOR_METHOD: [&str; 6] = ["core", "iter", "traits", "collect", "FromIterator", "from_iter"];
46 pub const FROM_STR_METHOD: [&str; 5] = ["core", "str", "traits", "FromStr", "from_str"];
47 pub const FUTURE_FROM_GENERATOR: [&str; 3] = ["core", "future", "from_generator"];
48 pub const HASH: [&str; 3] = ["core", "hash", "Hash"];
49 pub const HASHMAP: [&str; 5] = ["std", "collections", "hash", "map", "HashMap"];
50 pub const HASHMAP_ENTRY: [&str; 5] = ["std", "collections", "hash", "map", "Entry"];
51 pub const HASHSET: [&str; 5] = ["std", "collections", "hash", "set", "HashSet"];
52 #[cfg(feature = "internal-lints")]
53 pub const IDENT: [&str; 3] = ["rustc_span", "symbol", "Ident"];
54 #[cfg(feature = "internal-lints")]
55 pub const IDENT_AS_STR: [&str; 4] = ["rustc_span", "symbol", "Ident", "as_str"];
56 pub const INDEX: [&str; 3] = ["core", "ops", "Index"];
57 pub const INDEX_MUT: [&str; 3] = ["core", "ops", "IndexMut"];
58 pub const INSERT_STR: [&str; 4] = ["alloc", "string", "String", "insert_str"];
59 pub const INTO: [&str; 3] = ["core", "convert", "Into"];
60 pub const INTO_ITERATOR: [&str; 5] = ["core", "iter", "traits", "collect", "IntoIterator"];
61 pub const IO_READ: [&str; 3] = ["std", "io", "Read"];
62 pub const IO_WRITE: [&str; 3] = ["std", "io", "Write"];
63 pub const IPADDR_V4: [&str; 5] = ["std", "net", "ip", "IpAddr", "V4"];
64 pub const IPADDR_V6: [&str; 5] = ["std", "net", "ip", "IpAddr", "V6"];
65 pub const ITER_REPEAT: [&str; 5] = ["core", "iter", "sources", "repeat", "repeat"];
66 #[cfg(feature = "internal-lints")]
67 pub const KW_MODULE: [&str; 3] = ["rustc_span", "symbol", "kw"];
68 #[cfg(feature = "internal-lints")]
69 pub const LATE_CONTEXT: [&str; 2] = ["rustc_lint", "LateContext"];
70 pub const LINKED_LIST: [&str; 4] = ["alloc", "collections", "linked_list", "LinkedList"];
71 #[cfg(feature = "internal-lints")]
72 pub const LINT: [&str; 2] = ["rustc_lint_defs", "Lint"];
73 pub const MEM_DISCRIMINANT: [&str; 3] = ["core", "mem", "discriminant"];
74 pub const MEM_FORGET: [&str; 3] = ["core", "mem", "forget"];
75 pub const MEM_MANUALLY_DROP: [&str; 4] = ["core", "mem", "manually_drop", "ManuallyDrop"];
76 pub const MEM_MAYBEUNINIT: [&str; 4] = ["core", "mem", "maybe_uninit", "MaybeUninit"];
77 pub const MEM_MAYBEUNINIT_UNINIT: [&str; 5] = ["core", "mem", "maybe_uninit", "MaybeUninit", "uninit"];
78 pub const MEM_REPLACE: [&str; 3] = ["core", "mem", "replace"];
79 pub const MEM_SIZE_OF: [&str; 3] = ["core", "mem", "size_of"];
80 pub const MEM_SIZE_OF_VAL: [&str; 3] = ["core", "mem", "size_of_val"];
81 pub const MUTEX_GUARD: [&str; 4] = ["std", "sync", "mutex", "MutexGuard"];
82 pub const OPEN_OPTIONS: [&str; 3] = ["std", "fs", "OpenOptions"];
83 pub const OPS_MODULE: [&str; 2] = ["core", "ops"];
84 pub const OPTION: [&str; 3] = ["core", "option", "Option"];
85 pub const OPTION_NONE: [&str; 4] = ["core", "option", "Option", "None"];
86 pub const OPTION_SOME: [&str; 4] = ["core", "option", "Option", "Some"];
87 pub const ORD: [&str; 3] = ["core", "cmp", "Ord"];
88 pub const OS_STRING_AS_OS_STR: [&str; 5] = ["std", "ffi", "os_str", "OsString", "as_os_str"];
89 pub const OS_STR_TO_OS_STRING: [&str; 5] = ["std", "ffi", "os_str", "OsStr", "to_os_string"];
90 pub(super) const PANICKING_PANIC: [&str; 3] = ["core", "panicking", "panic"];
91 pub(super) const PANICKING_PANIC_FMT: [&str; 3] = ["core", "panicking", "panic_fmt"];
92 pub(super) const PANICKING_PANIC_STR: [&str; 3] = ["core", "panicking", "panic_str"];
93 pub(super) const PANIC_ANY: [&str; 3] = ["std", "panic", "panic_any"];
94 pub const PARKING_LOT_MUTEX_GUARD: [&str; 2] = ["parking_lot", "MutexGuard"];
95 pub const PARKING_LOT_RWLOCK_READ_GUARD: [&str; 2] = ["parking_lot", "RwLockReadGuard"];
96 pub const PARKING_LOT_RWLOCK_WRITE_GUARD: [&str; 2] = ["parking_lot", "RwLockWriteGuard"];
97 pub const PATH_BUF_AS_PATH: [&str; 4] = ["std", "path", "PathBuf", "as_path"];
98 pub const PATH_TO_PATH_BUF: [&str; 4] = ["std", "path", "Path", "to_path_buf"];
99 pub const PERMISSIONS: [&str; 3] = ["std", "fs", "Permissions"];
100 pub const PERMISSIONS_FROM_MODE: [&str; 7] = ["std", "sys", "unix", "ext", "fs", "PermissionsExt", "from_mode"];
101 pub const POLL: [&str; 4] = ["core", "task", "poll", "Poll"];
102 pub const POLL_PENDING: [&str; 5] = ["core", "task", "poll", "Poll", "Pending"];
103 pub const POLL_READY: [&str; 5] = ["core", "task", "poll", "Poll", "Ready"];
104 pub const PTR_COPY: [&str; 4] = ["core", "intrinsics", "", "copy"];
105 pub const PTR_COPY_NONOVERLAPPING: [&str; 4] = ["core", "intrinsics", "", "copy_nonoverlapping"];
106 pub const PTR_EQ: [&str; 3] = ["core", "ptr", "eq"];
107 pub const PTR_NULL: [&str; 3] = ["core", "ptr", "null"];
108 pub const PTR_NULL_MUT: [&str; 3] = ["core", "ptr", "null_mut"];
109 pub const PTR_SLICE_FROM_RAW_PARTS: [&str; 3] = ["core", "ptr", "slice_from_raw_parts"];
110 pub const PTR_SLICE_FROM_RAW_PARTS_MUT: [&str; 3] = ["core", "ptr", "slice_from_raw_parts_mut"];
111 pub const PTR_SWAP_NONOVERLAPPING: [&str; 3] = ["core", "ptr", "swap_nonoverlapping"];
112 pub const PTR_READ: [&str; 3] = ["core", "ptr", "read"];
113 pub const PTR_READ_UNALIGNED: [&str; 3] = ["core", "ptr", "read_unaligned"];
114 pub const PTR_READ_VOLATILE: [&str; 3] = ["core", "ptr", "read_volatile"];
115 pub const PTR_REPLACE: [&str; 3] = ["core", "ptr", "replace"];
116 pub const PTR_SWAP: [&str; 3] = ["core", "ptr", "swap"];
117 pub const PTR_WRITE: [&str; 3] = ["core", "ptr", "write"];
118 pub const PTR_WRITE_BYTES: [&str; 3] = ["core", "intrinsics", "write_bytes"];
119 pub const PTR_WRITE_UNALIGNED: [&str; 3] = ["core", "ptr", "write_unaligned"];
120 pub const PTR_WRITE_VOLATILE: [&str; 3] = ["core", "ptr", "write_volatile"];
121 pub const PUSH_STR: [&str; 4] = ["alloc", "string", "String", "push_str"];
122 pub const RANGE_ARGUMENT_TRAIT: [&str; 3] = ["core", "ops", "RangeBounds"];
123 pub const RC_PTR_EQ: [&str; 4] = ["alloc", "rc", "Rc", "ptr_eq"];
124 pub const REFCELL_REF: [&str; 3] = ["core", "cell", "Ref"];
125 pub const REFCELL_REFMUT: [&str; 3] = ["core", "cell", "RefMut"];
126 pub const REGEX_BUILDER_NEW: [&str; 5] = ["regex", "re_builder", "unicode", "RegexBuilder", "new"];
127 pub const REGEX_BYTES_BUILDER_NEW: [&str; 5] = ["regex", "re_builder", "bytes", "RegexBuilder", "new"];
128 pub const REGEX_BYTES_NEW: [&str; 4] = ["regex", "re_bytes", "Regex", "new"];
129 pub const REGEX_BYTES_SET_NEW: [&str; 5] = ["regex", "re_set", "bytes", "RegexSet", "new"];
130 pub const REGEX_NEW: [&str; 4] = ["regex", "re_unicode", "Regex", "new"];
131 pub const REGEX_SET_NEW: [&str; 5] = ["regex", "re_set", "unicode", "RegexSet", "new"];
132 pub const RESULT: [&str; 3] = ["core", "result", "Result"];
133 pub const RESULT_ERR: [&str; 4] = ["core", "result", "Result", "Err"];
134 pub const RESULT_OK: [&str; 4] = ["core", "result", "Result", "Ok"];
135 pub const RWLOCK_READ_GUARD: [&str; 4] = ["std", "sync", "rwlock", "RwLockReadGuard"];
136 pub const RWLOCK_WRITE_GUARD: [&str; 4] = ["std", "sync", "rwlock", "RwLockWriteGuard"];
137 pub const SERDE_DESERIALIZE: [&str; 3] = ["serde", "de", "Deserialize"];
138 pub const SERDE_DE_VISITOR: [&str; 3] = ["serde", "de", "Visitor"];
139 pub const SLICE_FROM_RAW_PARTS: [&str; 4] = ["core", "slice", "raw", "from_raw_parts"];
140 pub const SLICE_FROM_RAW_PARTS_MUT: [&str; 4] = ["core", "slice", "raw", "from_raw_parts_mut"];
141 pub const SLICE_INTO_VEC: [&str; 4] = ["alloc", "slice", "<impl [T]>", "into_vec"];
142 pub const SLICE_ITER: [&str; 4] = ["core", "slice", "iter", "Iter"];
143 pub const STDERR: [&str; 4] = ["std", "io", "stdio", "stderr"];
144 pub const STDOUT: [&str; 4] = ["std", "io", "stdio", "stdout"];
145 pub const CONVERT_IDENTITY: [&str; 3] = ["core", "convert", "identity"];
146 pub const STD_FS_CREATE_DIR: [&str; 3] = ["std", "fs", "create_dir"];
147 pub const STRING_AS_MUT_STR: [&str; 4] = ["alloc", "string", "String", "as_mut_str"];
148 pub const STRING_AS_STR: [&str; 4] = ["alloc", "string", "String", "as_str"];
149 pub const STR_ENDS_WITH: [&str; 4] = ["core", "str", "<impl str>", "ends_with"];
150 pub const STR_FROM_UTF8: [&str; 4] = ["core", "str", "converts", "from_utf8"];
151 pub const STR_LEN: [&str; 4] = ["core", "str", "<impl str>", "len"];
152 pub const STR_STARTS_WITH: [&str; 4] = ["core", "str", "<impl str>", "starts_with"];
153 #[cfg(feature = "internal-lints")]
154 pub const SYMBOL: [&str; 3] = ["rustc_span", "symbol", "Symbol"];
155 #[cfg(feature = "internal-lints")]
156 pub const SYMBOL_AS_STR: [&str; 4] = ["rustc_span", "symbol", "Symbol", "as_str"];
157 #[cfg(feature = "internal-lints")]
158 pub const SYMBOL_INTERN: [&str; 4] = ["rustc_span", "symbol", "Symbol", "intern"];
159 #[cfg(feature = "internal-lints")]
160 pub const SYMBOL_TO_IDENT_STRING: [&str; 4] = ["rustc_span", "symbol", "Symbol", "to_ident_string"];
161 #[cfg(feature = "internal-lints")]
162 pub const SYM_MODULE: [&str; 3] = ["rustc_span", "symbol", "sym"];
163 #[cfg(feature = "internal-lints")]
164 pub const SYNTAX_CONTEXT: [&str; 3] = ["rustc_span", "hygiene", "SyntaxContext"];
165 pub const TO_OWNED_METHOD: [&str; 4] = ["alloc", "borrow", "ToOwned", "to_owned"];
166 pub const TO_STRING_METHOD: [&str; 4] = ["alloc", "string", "ToString", "to_string"];
167 pub const TRANSMUTE: [&str; 4] = ["core", "intrinsics", "", "transmute"];
168 pub const TRY_FROM: [&str; 4] = ["core", "convert", "TryFrom", "try_from"];
169 pub const TRY_INTO_TRAIT: [&str; 3] = ["core", "convert", "TryInto"];
170 pub const VEC: [&str; 3] = ["alloc", "vec", "Vec"];
171 pub const VEC_AS_MUT_SLICE: [&str; 4] = ["alloc", "vec", "Vec", "as_mut_slice"];
172 pub const VEC_AS_SLICE: [&str; 4] = ["alloc", "vec", "Vec", "as_slice"];
173 pub const VEC_DEQUE: [&str; 4] = ["alloc", "collections", "vec_deque", "VecDeque"];
174 pub const VEC_FROM_ELEM: [&str; 3] = ["alloc", "vec", "from_elem"];
175 pub const VEC_NEW: [&str; 4] = ["alloc", "vec", "Vec", "new"];
176 pub const VEC_RESIZE: [&str; 4] = ["alloc", "vec", "Vec", "resize"];
177 pub const WEAK_ARC: [&str; 3] = ["alloc", "sync", "Weak"];
178 pub const WEAK_RC: [&str; 3] = ["alloc", "rc", "Weak"];
179 pub const WRITE_BYTES: [&str; 3] = ["core", "intrinsics", "write_bytes"];