diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-17 16:25:05 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-17 16:25:05 +0100 |
| commit | 384789a6bb24bee810684a39bb60b2e1389ec154 (patch) | |
| tree | f48b3131c7facc31a7dd97a4ef27fe3a331c0600 /common/object/src/registry.rs | |
| parent | 9a8d337f60541cec09917dbf4741992715a8edaf (diff) | |
| download | jellything-384789a6bb24bee810684a39bb60b2e1389ec154.tar jellything-384789a6bb24bee810684a39bb60b2e1389ec154.tar.bz2 jellything-384789a6bb24bee810684a39bb60b2e1389ec154.tar.zst | |
i64 json/debug support
Diffstat (limited to 'common/object/src/registry.rs')
| -rw-r--r-- | common/object/src/registry.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/object/src/registry.rs b/common/object/src/registry.rs index f3ed7df..5f1f36e 100644 --- a/common/object/src/registry.rs +++ b/common/object/src/registry.rs @@ -16,6 +16,7 @@ pub mod types { pub const BINARY: TypeId = TypeId::of::<&[u8]>(); pub const U32: TypeId = TypeId::of::<u32>(); pub const U64: TypeId = TypeId::of::<u64>(); + pub const I64: TypeId = TypeId::of::<i64>(); pub const F64: TypeId = TypeId::of::<f64>(); } |