@@ -17,7 +17,7 @@ pub const CLONE_TRAIT_METHOD: [&str; 4] = ["core", "clone", "Clone", "clone"];
1717pub const CMP_MAX : [ & str ; 3 ] = [ "core" , "cmp" , "max" ] ;
1818pub const CMP_MIN : [ & str ; 3 ] = [ "core" , "cmp" , "min" ] ;
1919pub 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" ] ;
2121pub const DEFAULT_TRAIT : [ & str ; 3 ] = [ "core" , "default" , "Default" ] ;
2222pub const DEFAULT_TRAIT_METHOD : [ & str ; 4 ] = [ "core" , "default" , "Default" , "default" ] ;
2323pub const DEREF_TRAIT_METHOD : [ & str ; 5 ] = [ "core" , "ops" , "deref" , "Deref" , "deref" ] ;
@@ -27,8 +27,8 @@ pub const DROP: [&str; 3] = ["core", "mem", "drop"];
2727pub const DROP_TRAIT : [ & str ; 4 ] = [ "core" , "ops" , "drop" , "Drop" ] ;
2828pub const DURATION : [ & str ; 3 ] = [ "core" , "time" , "Duration" ] ;
2929pub 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" ] ;
3232pub const FROM_FROM : [ & str ; 4 ] = [ "core" , "convert" , "From" , "from" ] ;
3333pub const FROM_TRAIT : [ & str ; 3 ] = [ "core" , "convert" , "From" ] ;
3434pub const HASH : [ & str ; 2 ] = [ "hash" , "Hash" ] ;
@@ -60,11 +60,11 @@ pub const OPTION_NONE: [&str; 4] = ["core", "option", "Option", "None"];
6060pub const OPTION_SOME : [ & str ; 4 ] = [ "core" , "option" , "Option" , "Some" ] ;
6161pub const ORD : [ & str ; 3 ] = [ "core" , "cmp" , "Ord" ] ;
6262pub 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" ] ;
6464pub const PARTIAL_ORD : [ & str ; 3 ] = [ "core" , "cmp" , "PartialOrd" ] ;
6565pub const PATH : [ & str ; 3 ] = [ "std" , "path" , "Path" ] ;
6666pub 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" ] ;
6868pub const PTR_NULL : [ & str ; 2 ] = [ "ptr" , "null" ] ;
6969pub const PTR_NULL_MUT : [ & str ; 2 ] = [ "ptr" , "null_mut" ] ;
7070pub const RANGE : [ & str ; 3 ] = [ "core" , "ops" , "Range" ] ;
@@ -83,12 +83,12 @@ pub const RANGE_TO_STD: [&str; 3] = ["std", "ops", "RangeTo"];
8383pub const RC : [ & str ; 3 ] = [ "alloc" , "rc" , "Rc" ] ;
8484pub const RECEIVER : [ & str ; 4 ] = [ "std" , "sync" , "mpsc" , "Receiver" ] ;
8585pub 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" ] ;
9292pub const REPEAT : [ & str ; 3 ] = [ "core" , "iter" , "repeat" ] ;
9393pub const RESULT : [ & str ; 3 ] = [ "core" , "result" , "Result" ] ;
9494pub const RESULT_ERR : [ & str ; 4 ] = [ "core" , "result" , "Result" , "Err" ] ;
0 commit comments