From 384789a6bb24bee810684a39bb60b2e1389ec154 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Tue, 17 Feb 2026 16:25:05 +0100 Subject: i64 json/debug support --- common/object/src/inspect.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'common/object/src/inspect.rs') diff --git a/common/object/src/inspect.rs b/common/object/src/inspect.rs index bc217f0..cfab5c3 100644 --- a/common/object/src/inspect.rs +++ b/common/object/src/inspect.rs @@ -28,6 +28,7 @@ impl Debug for Inspector<'_, Object<'_>> { x if x == OBJECT => s.field(info.name, &self.1.get_typed::(i).unwrap()), x if x == U32 => s.field(info.name, &self.1.get_typed::(i).unwrap()), x if x == U64 => s.field(info.name, &self.1.get_typed::(i).unwrap()), + x if x == I64 => s.field(info.name, &self.1.get_typed::(i).unwrap()), _ => { nonexhaustive = true; &mut s -- cgit v1.3