3
3
pub const ASMUT_TRAIT : [ & ' static str ; 3 ] = [ "core" , "convert" , "AsMut" ] ;
4
4
pub const ASREF_TRAIT : [ & ' static str ; 3 ] = [ "core" , "convert" , "AsRef" ] ;
5
5
pub const BEGIN_PANIC : [ & ' static str ; 3 ] = [ "std" , "panicking" , "begin_panic" ] ;
6
- pub const BINARY_HEAP : [ & ' static str ; 3 ] = [ "collections " , "binary_heap" , "BinaryHeap" ] ;
6
+ pub const BINARY_HEAP : [ & ' static str ; 3 ] = [ "alloc " , "binary_heap" , "BinaryHeap" ] ;
7
7
pub const BORROW_TRAIT : [ & ' static str ; 3 ] = [ "core" , "borrow" , "Borrow" ] ;
8
8
pub const BOX : [ & ' static str ; 3 ] = [ "std" , "boxed" , "Box" ] ;
9
9
pub const BOX_NEW : [ & ' static str ; 4 ] = [ "std" , "boxed" , "Box" , "new" ] ;
10
- pub const BTREEMAP : [ & ' static str ; 4 ] = [ "collections " , "btree" , "map" , "BTreeMap" ] ;
11
- pub const BTREEMAP_ENTRY : [ & ' static str ; 4 ] = [ "collections " , "btree" , "map" , "Entry" ] ;
12
- pub const BTREESET : [ & ' static str ; 4 ] = [ "collections " , "btree" , "set" , "BTreeSet" ] ;
10
+ pub const BTREEMAP : [ & ' static str ; 4 ] = [ "alloc " , "btree" , "map" , "BTreeMap" ] ;
11
+ pub const BTREEMAP_ENTRY : [ & ' static str ; 4 ] = [ "alloc " , "btree" , "map" , "Entry" ] ;
12
+ pub const BTREESET : [ & ' static str ; 4 ] = [ "alloc " , "btree" , "set" , "BTreeSet" ] ;
13
13
pub const CLONE : [ & ' static str ; 4 ] = [ "core" , "clone" , "Clone" , "clone" ] ;
14
14
pub const CLONE_TRAIT : [ & ' static str ; 3 ] = [ "core" , "clone" , "Clone" ] ;
15
15
pub const CMP_MAX : [ & ' static str ; 3 ] = [ "core" , "cmp" , "max" ] ;
16
16
pub const CMP_MIN : [ & ' static str ; 3 ] = [ "core" , "cmp" , "min" ] ;
17
- pub const COW : [ & ' static str ; 3 ] = [ "collections " , "borrow" , "Cow" ] ;
17
+ pub const COW : [ & ' static str ; 3 ] = [ "alloc " , "borrow" , "Cow" ] ;
18
18
pub const CSTRING_NEW : [ & ' static str ; 5 ] = [ "std" , "ffi" , "c_str" , "CString" , "new" ] ;
19
19
pub const DEBUG_FMT_METHOD : [ & ' static str ; 4 ] = [ "core" , "fmt" , "Debug" , "fmt" ] ;
20
20
pub const DEFAULT_TRAIT : [ & ' static str ; 3 ] = [ "core" , "default" , "Default" ] ;
@@ -31,7 +31,7 @@ pub const IO_PRINT: [&'static str; 4] = ["std", "io", "stdio", "_print"];
31
31
pub const IO_READ : [ & ' static str ; 3 ] = [ "std" , "io" , "Read" ] ;
32
32
pub const IO_WRITE : [ & ' static str ; 3 ] = [ "std" , "io" , "Write" ] ;
33
33
pub const ITERATOR : [ & ' static str ; 4 ] = [ "core" , "iter" , "iterator" , "Iterator" ] ;
34
- pub const LINKED_LIST : [ & ' static str ; 3 ] = [ "collections " , "linked_list" , "LinkedList" ] ;
34
+ pub const LINKED_LIST : [ & ' static str ; 3 ] = [ "alloc " , "linked_list" , "LinkedList" ] ;
35
35
pub const LINT : [ & ' static str ; 3 ] = [ "rustc" , "lint" , "Lint" ] ;
36
36
pub const LINT_ARRAY : [ & ' static str ; 3 ] = [ "rustc" , "lint" , "LintArray" ] ;
37
37
pub const MEM_FORGET : [ & ' static str ; 3 ] = [ "core" , "mem" , "forget" ] ;
@@ -67,12 +67,12 @@ pub const RESULT: [&'static str; 3] = ["core", "result", "Result"];
67
67
pub const RESULT_ERR : [ & ' static str ; 4 ] = [ "core" , "result" , "Result" , "Err" ] ;
68
68
pub const RESULT_OK : [ & ' static str ; 4 ] = [ "core" , "result" , "Result" , "Ok" ] ;
69
69
pub const SERDE_DE_VISITOR : [ & ' static str ; 3 ] = [ "serde" , "de" , "Visitor" ] ;
70
- pub const SLICE_INTO_VEC : [ & ' static str ; 4 ] = [ "collections " , "slice" , "<impl [T]>" , "into_vec" ] ;
71
- pub const STRING : [ & ' static str ; 3 ] = [ "collections " , "string" , "String" ] ;
72
- pub const TO_OWNED : [ & ' static str ; 3 ] = [ "collections " , "borrow" , "ToOwned" ] ;
73
- pub const TO_STRING : [ & ' static str ; 3 ] = [ "collections " , "string" , "ToString" ] ;
70
+ pub const SLICE_INTO_VEC : [ & ' static str ; 4 ] = [ "alloc " , "slice" , "<impl [T]>" , "into_vec" ] ;
71
+ pub const STRING : [ & ' static str ; 3 ] = [ "alloc " , "string" , "String" ] ;
72
+ pub const TO_OWNED : [ & ' static str ; 3 ] = [ "alloc " , "borrow" , "ToOwned" ] ;
73
+ pub const TO_STRING : [ & ' static str ; 3 ] = [ "alloc " , "string" , "ToString" ] ;
74
74
pub const TRANSMUTE : [ & ' static str ; 4 ] = [ "core" , "intrinsics" , "" , "transmute" ] ;
75
75
pub const TRY_INTO_RESULT : [ & ' static str ; 4 ] = [ "std" , "ops" , "Try" , "into_result" ] ;
76
- pub const VEC : [ & ' static str ; 3 ] = [ "collections " , "vec" , "Vec" ] ;
77
- pub const VEC_DEQUE : [ & ' static str ; 3 ] = [ "collections " , "vec_deque" , "VecDeque" ] ;
78
- pub const VEC_FROM_ELEM : [ & ' static str ; 3 ] = [ "collections " , "vec" , "from_elem" ] ;
76
+ pub const VEC : [ & ' static str ; 3 ] = [ "alloc " , "vec" , "Vec" ] ;
77
+ pub const VEC_DEQUE : [ & ' static str ; 3 ] = [ "alloc " , "vec_deque" , "VecDeque" ] ;
78
+ pub const VEC_FROM_ELEM : [ & ' static str ; 3 ] = [ "alloc " , "vec" , "from_elem" ] ;
0 commit comments