We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362031c commit 85b773dCopy full SHA for 85b773d
allocative/src/impls/std/primitive.rs
@@ -35,6 +35,12 @@ impl Allocative for u64 {
35
}
36
37
38
+impl Allocative for u128 {
39
+ fn visit<'a, 'b: 'a>(&self, visitor: &'a mut Visitor<'b>) {
40
+ visitor.visit_simple_sized::<Self>();
41
+ }
42
+}
43
+
44
impl Allocative for usize {
45
fn visit<'a, 'b: 'a>(&self, visitor: &'a mut Visitor<'b>) {
46
visitor.visit_simple_sized::<Self>();
@@ -65,6 +71,12 @@ impl Allocative for i64 {
65
71
66
72
67
73
74
+impl Allocative for i128 {
75
76
77
78
79
68
80
impl Allocative for isize {
69
81
70
82
0 commit comments