@@ -24,6 +24,7 @@ pub const DEFAULT_TRAIT_METHOD: [&str; 4] = ["core", "default", "Default", "defa
24
24
pub const DEREF_MUT_TRAIT_METHOD : [ & str ; 5 ] = [ "core" , "ops" , "deref" , "DerefMut" , "deref_mut" ] ;
25
25
pub const DEREF_TRAIT_METHOD : [ & str ; 5 ] = [ "core" , "ops" , "deref" , "Deref" , "deref" ] ;
26
26
pub const DISPLAY_FMT_METHOD : [ & str ; 4 ] = [ "core" , "fmt" , "Display" , "fmt" ] ;
27
+ pub const DISPLAY_TRAIT : [ & str ; 3 ] = [ "core" , "fmt" , "Display" ] ;
27
28
pub const DOUBLE_ENDED_ITERATOR : [ & str ; 4 ] = [ "core" , "iter" , "traits" , "DoubleEndedIterator" ] ;
28
29
pub const DROP : [ & str ; 3 ] = [ "core" , "mem" , "drop" ] ;
29
30
pub const DROP_TRAIT : [ & str ; 4 ] = [ "core" , "ops" , "drop" , "Drop" ] ;
@@ -36,7 +37,6 @@ pub const FMT_ARGUMENTS_NEW_V1_FORMATTED: [&str; 4] = ["core", "fmt", "Arguments
36
37
pub const FMT_ARGUMENTV1_NEW : [ & str ; 4 ] = [ "core" , "fmt" , "ArgumentV1" , "new" ] ;
37
38
pub const FROM_FROM : [ & str ; 4 ] = [ "core" , "convert" , "From" , "from" ] ;
38
39
pub const FROM_TRAIT : [ & str ; 3 ] = [ "core" , "convert" , "From" ] ;
39
- pub const FUTURE : [ & str ; 3 ] = [ "std" , "future" , "Future" ] ;
40
40
pub const HASH : [ & str ; 2 ] = [ "hash" , "Hash" ] ;
41
41
pub const HASHMAP : [ & str ; 5 ] = [ "std" , "collections" , "hash" , "map" , "HashMap" ] ;
42
42
pub const HASHMAP_ENTRY : [ & str ; 5 ] = [ "std" , "collections" , "hash" , "map" , "Entry" ] ;
@@ -69,7 +69,6 @@ pub const ORD: [&str; 3] = ["core", "cmp", "Ord"];
69
69
pub const OS_STRING : [ & str ; 4 ] = [ "std" , "ffi" , "os_str" , "OsString" ] ;
70
70
pub const OS_STRING_AS_OS_STR : [ & str ; 5 ] = [ "std" , "ffi" , "os_str" , "OsString" , "as_os_str" ] ;
71
71
pub const OS_STR_TO_OS_STRING : [ & str ; 5 ] = [ "std" , "ffi" , "os_str" , "OsStr" , "to_os_string" ] ;
72
- pub const PARTIAL_ORD : [ & str ; 3 ] = [ "core" , "cmp" , "PartialOrd" ] ;
73
72
pub const PATH : [ & str ; 3 ] = [ "std" , "path" , "Path" ] ;
74
73
pub const PATH_BUF : [ & str ; 3 ] = [ "std" , "path" , "PathBuf" ] ;
75
74
pub const PATH_BUF_AS_PATH : [ & str ; 4 ] = [ "std" , "path" , "PathBuf" , "as_path" ] ;
0 commit comments