@@ -17,7 +17,7 @@ pub const CLONE_TRAIT_METHOD: [&str; 4] = ["core", "clone", "Clone", "clone"];
17
17
pub const CMP_MAX : [ & str ; 3 ] = [ "core" , "cmp" , "max" ] ;
18
18
pub const CMP_MIN : [ & str ; 3 ] = [ "core" , "cmp" , "min" ] ;
19
19
pub const COW : [ & str ; 3 ] = [ "alloc" , "borrow" , "Cow" ] ;
20
- pub const CSTRING_NEW : [ & str ; 2 ] = [ "< std:: ffi:: CString> " , "new" ] ;
20
+ pub const CSTRING_NEW : [ & str ; 5 ] = [ "std" , " ffi" , "c_str" , " CString", "new" ] ;
21
21
pub const DEFAULT_TRAIT : [ & str ; 3 ] = [ "core" , "default" , "Default" ] ;
22
22
pub const DEFAULT_TRAIT_METHOD : [ & str ; 4 ] = [ "core" , "default" , "Default" , "default" ] ;
23
23
pub const DEREF_TRAIT_METHOD : [ & str ; 5 ] = [ "core" , "ops" , "deref" , "Deref" , "deref" ] ;
@@ -27,8 +27,8 @@ pub const DROP: [&str; 3] = ["core", "mem", "drop"];
27
27
pub const DROP_TRAIT : [ & str ; 4 ] = [ "core" , "ops" , "drop" , "Drop" ] ;
28
28
pub const DURATION : [ & str ; 3 ] = [ "core" , "time" , "Duration" ] ;
29
29
pub const EARLY_CONTEXT : [ & str ; 4 ] = [ "rustc" , "lint" , "context" , "EarlyContext" ] ;
30
- pub const FMT_ARGUMENTS_NEWV1 : [ & str ; 2 ] = [ "<std:: fmt:: Arguments<'a>> " , "new_v1" ] ;
31
- pub const FMT_ARGUMENTS_NEWV1FORMATTED : [ & str ; 2 ] = [ "<std:: fmt:: Arguments<'a>> " , "new_v1_formatted" ] ;
30
+ pub const FMT_ARGUMENTS_NEWV1 : [ & str ; 4 ] = [ "core" , " fmt" , " Arguments", "new_v1" ] ;
31
+ pub const FMT_ARGUMENTS_NEWV1FORMATTED : [ & str ; 4 ] = [ "core" , " fmt" , " Arguments", "new_v1_formatted" ] ;
32
32
pub const FROM_FROM : [ & str ; 4 ] = [ "core" , "convert" , "From" , "from" ] ;
33
33
pub const FROM_TRAIT : [ & str ; 3 ] = [ "core" , "convert" , "From" ] ;
34
34
pub const HASH : [ & str ; 2 ] = [ "hash" , "Hash" ] ;
@@ -60,11 +60,11 @@ pub const OPTION_NONE: [&str; 4] = ["core", "option", "Option", "None"];
60
60
pub const OPTION_SOME : [ & str ; 4 ] = [ "core" , "option" , "Option" , "Some" ] ;
61
61
pub const ORD : [ & str ; 3 ] = [ "core" , "cmp" , "Ord" ] ;
62
62
pub const OS_STRING : [ & str ; 4 ] = [ "std" , "ffi" , "os_str" , "OsString" ] ;
63
- pub const OS_STR_TO_OS_STRING : [ & str ; 2 ] = [ "< std:: ffi:: OsStr> " , "to_os_string" ] ;
63
+ pub const OS_STR_TO_OS_STRING : [ & str ; 5 ] = [ "std" , " ffi" , "os_str" , " OsStr", "to_os_string" ] ;
64
64
pub const PARTIAL_ORD : [ & str ; 3 ] = [ "core" , "cmp" , "PartialOrd" ] ;
65
65
pub const PATH : [ & str ; 3 ] = [ "std" , "path" , "Path" ] ;
66
66
pub const PATH_BUF : [ & str ; 3 ] = [ "std" , "path" , "PathBuf" ] ;
67
- pub const PATH_TO_PATH_BUF : [ & str ; 2 ] = [ "< std:: path:: Path> " , "to_path_buf" ] ;
67
+ pub const PATH_TO_PATH_BUF : [ & str ; 4 ] = [ "std" , " path" , " Path", "to_path_buf" ] ;
68
68
pub const PTR_NULL : [ & str ; 2 ] = [ "ptr" , "null" ] ;
69
69
pub const PTR_NULL_MUT : [ & str ; 2 ] = [ "ptr" , "null_mut" ] ;
70
70
pub const RANGE : [ & str ; 3 ] = [ "core" , "ops" , "Range" ] ;
@@ -83,12 +83,12 @@ pub const RANGE_TO_STD: [&str; 3] = ["std", "ops", "RangeTo"];
83
83
pub const RC : [ & str ; 3 ] = [ "alloc" , "rc" , "Rc" ] ;
84
84
pub const RECEIVER : [ & str ; 4 ] = [ "std" , "sync" , "mpsc" , "Receiver" ] ;
85
85
pub const REGEX : [ & str ; 3 ] = [ "regex" , "re_unicode" , "Regex" ] ;
86
- pub const REGEX_BUILDER_NEW : [ & str ; 2 ] = [ "< regex:: RegexBuilder> " , "new" ] ;
87
- pub const REGEX_BYTES_BUILDER_NEW : [ & str ; 2 ] = [ "< regex:: bytes:: RegexBuilder> " , "new" ] ;
88
- pub const REGEX_BYTES_NEW : [ & str ; 2 ] = [ "< regex::bytes:: Regex> " , "new" ] ;
89
- pub const REGEX_BYTES_SET_NEW : [ & str ; 2 ] = [ "< regex:: bytes:: RegexSet> " , "new" ] ;
90
- pub const REGEX_NEW : [ & str ; 2 ] = [ "< regex:: Regex> " , "new" ] ;
91
- pub const REGEX_SET_NEW : [ & str ; 2 ] = [ "< regex:: RegexSet> " , "new" ] ;
86
+ pub const REGEX_BUILDER_NEW : [ & str ; 5 ] = [ "regex" , "re_builder" , "unicode" , " RegexBuilder", "new" ] ;
87
+ pub const REGEX_BYTES_BUILDER_NEW : [ & str ; 5 ] = [ "regex" , "re_builder" , " bytes" , " RegexBuilder", "new" ] ;
88
+ pub const REGEX_BYTES_NEW : [ & str ; 4 ] = [ "regex" , "re_bytes" , " Regex", "new" ] ;
89
+ pub const REGEX_BYTES_SET_NEW : [ & str ; 5 ] = [ "regex" , "re_set" , " bytes" , " RegexSet", "new" ] ;
90
+ pub const REGEX_NEW : [ & str ; 4 ] = [ "regex" , "re_unicode" , " Regex", "new" ] ;
91
+ pub const REGEX_SET_NEW : [ & str ; 5 ] = [ "regex" , "re_set" , "unicode" , " RegexSet", "new" ] ;
92
92
pub const REPEAT : [ & str ; 3 ] = [ "core" , "iter" , "repeat" ] ;
93
93
pub const RESULT : [ & str ; 3 ] = [ "core" , "result" , "Result" ] ;
94
94
pub const RESULT_ERR : [ & str ; 4 ] = [ "core" , "result" , "Result" , "Err" ] ;
0 commit comments