@@ -8,7 +8,7 @@ use core::hash::{Hash, Hasher};
8
8
#[ derive( Clone , Copy , PartialEq , Eq , Hash , Debug , PartialOrd , Ord ) ]
9
9
#[ cfg_attr( feature = "serde1" , derive( serde:: Serialize , serde:: Deserialize ) ) ]
10
10
11
- pub struct TypeId ( pub ( crate ) u64 ) ;
11
+ pub struct TypeId ( pub ( crate ) u128 ) ;
12
12
13
13
impl TypeId {
14
14
pub ( crate ) fn of < T : ?Sized + ' static > ( ) -> Self {
@@ -22,21 +22,30 @@ impl TypeId {
22
22
23
23
impl From < core:: any:: TypeId > for TypeId {
24
24
fn from ( type_id : core:: any:: TypeId ) -> Self {
25
- let mut hasher = TypeIdHasher :: default ( ) ;
25
+ match core:: mem:: size_of :: < core:: any:: TypeId > ( ) {
26
+ 8 => {
27
+ let mut hasher = TypeIdHasher :: default ( ) ;
26
28
27
- type_id. hash ( & mut hasher) ;
29
+ type_id. hash ( & mut hasher) ;
28
30
29
- TypeId ( hasher. finish ( ) )
31
+ TypeId ( hasher. finish ( ) as u128 )
32
+ }
33
+ 16 => unsafe {
34
+ // This is technically unsound, core::any::TypeId has rust layout
35
+ // but there is no other way to get the full value anymore
36
+
37
+ let type_id_ptr: * const core:: any:: TypeId = & type_id;
38
+ let type_id_ptr = type_id_ptr as * const TypeId ;
39
+ * type_id_ptr
40
+ } ,
41
+ _ => panic ! ( "Compiler version not supported" ) ,
42
+ }
30
43
}
31
44
}
32
45
33
46
impl From < & core:: any:: TypeId > for TypeId {
34
47
fn from ( type_id : & core:: any:: TypeId ) -> Self {
35
- let mut hasher = TypeIdHasher :: default ( ) ;
36
-
37
- type_id. hash ( & mut hasher) ;
38
-
39
- TypeId ( hasher. finish ( ) )
48
+ type_id. into ( )
40
49
}
41
50
}
42
51
0 commit comments