diff options
| author | Tobias Deiminger <tdmg@linutronix.de> | 2024-04-14 23:17:48 +0200 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2025-02-25 00:01:42 +0100 |
| commit | 522258c809c9617bd6d92ee7305225a08803b369 (patch) | |
| tree | 34eee000df8fc13607a09bedde95431c1770bf0e /src/primitive/mod.rs | |
| parent | added session manager comments and log message (diff) | |
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.
Diffstat (limited to 'src/primitive/mod.rs')
| -rw-r--r-- | src/primitive/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
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)] |
