From 522258c809c9617bd6d92ee7305225a08803b369 Mon Sep 17 00:00:00 2001 From: Tobias Deiminger Date: Sun, 14 Apr 2024 23:17:48 +0200 Subject: Add MsgId as Rust type Up to now it was handled implicitely in Variant::UserType. Making it an explicit type allows to centralize the i32/i64 cfg dependency and to use the type for arguments in signalproxy::objects functions. --- src/primitive/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/primitive/mod.rs') diff --git a/src/primitive/mod.rs b/src/primitive/mod.rs index 5124d3b..dbc4a58 100644 --- a/src/primitive/mod.rs +++ b/src/primitive/mod.rs @@ -1,6 +1,7 @@ mod bufferinfo; mod datetime; mod message; +mod msgid; mod signedint; mod string; mod stringlist; @@ -12,6 +13,7 @@ mod variantmap; pub use bufferinfo::*; pub use datetime::*; pub use message::*; +pub use msgid::*; #[allow(unused_imports)] pub use signedint::*; #[allow(unused_imports)] -- cgit v1.2.3