diff options
| author | Max Audron <audron@cocaine.farm> | 2025-02-26 17:53:08 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2025-02-26 17:53:08 +0100 |
| commit | 6f9c0d0f2906d05e27f9f11af6cefdf006c2cf4b (patch) | |
| tree | 3c92d681f8c98786bf7371ecfece60ed4f8d4a7c /src/primitive/mod.rs | |
| parent | add MsgId and BufferId to objects where needed (diff) | |
refactor variant serialization code
Factored out a lot of the serialization of variants into trait's that
have auto impl so code duplication is much reduced
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 67bb2ac..7e629b0 100644 --- a/src/primitive/mod.rs +++ b/src/primitive/mod.rs @@ -3,6 +3,7 @@ mod bufferinfo; mod datetime; mod message; mod msgid; +mod peerptr; mod signedint; mod string; mod stringlist; @@ -16,6 +17,7 @@ pub use bufferinfo::*; pub use datetime::*; pub use message::*; pub use msgid::*; +pub use peerptr::*; #[allow(unused_imports)] pub use signedint::*; #[allow(unused_imports)] |
