|
2 | 2 | //! about. |
3 | 3 |
|
4 | 4 | pub const ANY_TRAIT: [&str; 3] = ["std", "any", "Any"]; |
5 | | -pub const ARC: [&str; 3] = ["alloc", "arc", "Arc"]; |
| 5 | +pub const ARC: [&str; 3] = ["alloc", "sync", "Arc"]; |
6 | 6 | pub const ASMUT_TRAIT: [&str; 3] = ["core", "convert", "AsMut"]; |
7 | 7 | pub const ASREF_TRAIT: [&str; 3] = ["core", "convert", "AsRef"]; |
8 | 8 | pub const BEGIN_PANIC: [&str; 3] = ["std", "panicking", "begin_panic"]; |
9 | 9 | pub const BEGIN_PANIC_FMT: [&str; 3] = ["std", "panicking", "begin_panic_fmt"]; |
10 | | -pub const BINARY_HEAP: [&str; 3] = ["alloc", "binary_heap", "BinaryHeap"]; |
| 10 | +pub const BINARY_HEAP: [&str; 4] = ["alloc", "collections", "binary_heap", "BinaryHeap"]; |
11 | 11 | pub const BORROW_TRAIT: [&str; 3] = ["core", "borrow", "Borrow"]; |
12 | 12 | pub const BOX: [&str; 3] = ["std", "boxed", "Box"]; |
13 | 13 | pub const BOX_NEW: [&str; 4] = ["std", "boxed", "Box", "new"]; |
14 | | -pub const BTREEMAP: [&str; 4] = ["alloc", "btree", "map", "BTreeMap"]; |
15 | | -pub const BTREEMAP_ENTRY: [&str; 4] = ["alloc", "btree", "map", "Entry"]; |
16 | | -pub const BTREESET: [&str; 4] = ["alloc", "btree", "set", "BTreeSet"]; |
| 14 | +pub const BTREEMAP: [&str; 5] = ["alloc", "collections", "btree", "map", "BTreeMap"]; |
| 15 | +pub const BTREEMAP_ENTRY: [&str; 5] = ["alloc", "collections", "btree", "map", "Entry"]; |
| 16 | +pub const BTREESET: [&str; 5] = ["alloc", "collections", "btree", "set", "BTreeSet"]; |
17 | 17 | pub const CLONE: [&str; 4] = ["core", "clone", "Clone", "clone"]; |
18 | 18 | pub const CLONE_TRAIT: [&str; 3] = ["core", "clone", "Clone"]; |
19 | 19 | pub const CMP_MAX: [&str; 3] = ["core", "cmp", "max"]; |
@@ -47,7 +47,7 @@ pub const IO_PRINT: [&str; 4] = ["std", "io", "stdio", "_print"]; |
47 | 47 | pub const IO_READ: [&str; 3] = ["std", "io", "Read"]; |
48 | 48 | pub const IO_WRITE: [&str; 3] = ["std", "io", "Write"]; |
49 | 49 | pub const ITERATOR: [&str; 4] = ["core", "iter", "iterator", "Iterator"]; |
50 | | -pub const LINKED_LIST: [&str; 3] = ["alloc", "linked_list", "LinkedList"]; |
| 50 | +pub const LINKED_LIST: [&str; 4] = ["alloc", "collections", "linked_list", "LinkedList"]; |
51 | 51 | pub const LINT: [&str; 2] = ["lint", "Lint"]; |
52 | 52 | pub const LINT_ARRAY: [&str; 2] = ["lint", "LintArray"]; |
53 | 53 | pub const MEM_FORGET: [&str; 3] = ["core", "mem", "forget"]; |
@@ -101,7 +101,7 @@ pub const TRANSMUTE: [&str; 4] = ["core", "intrinsics", "", "transmute"]; |
101 | 101 | pub const TRY_INTO_RESULT: [&str; 4] = ["std", "ops", "Try", "into_result"]; |
102 | 102 | pub const UNINIT: [&str; 4] = ["core", "intrinsics", "", "uninit"]; |
103 | 103 | pub const VEC: [&str; 3] = ["alloc", "vec", "Vec"]; |
104 | | -pub const VEC_DEQUE: [&str; 3] = ["alloc", "vec_deque", "VecDeque"]; |
| 104 | +pub const VEC_DEQUE: [&str; 4] = ["alloc", "collections", "vec_deque", "VecDeque"]; |
105 | 105 | pub const VEC_FROM_ELEM: [&str; 3] = ["alloc", "vec", "from_elem"]; |
106 | | -pub const WEAK_ARC: [&str; 3] = ["alloc", "arc", "Weak"]; |
| 106 | +pub const WEAK_ARC: [&str; 3] = ["alloc", "sync", "Weak"]; |
107 | 107 | pub const WEAK_RC: [&str; 3] = ["alloc", "rc", "Weak"]; |
0 commit comments