diff options
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>(); } |