diff options
| author | Max Audron <audron@cocaine.farm> | 2025-02-26 18:23:55 +0100 |
|---|---|---|
| committer | Max Audron <audron@cocaine.farm> | 2025-02-26 18:26:01 +0100 |
| commit | 1bed4eb5a3727e84bac4d64995df212a971f4566 (patch) | |
| tree | ae52417374d601e870f204044f6a9ed1eed453f1 /src/lib.rs | |
| parent | refactor variant serialization code (diff) | |
refactor deserialize and serializevariant trait
move stuff around a bit to sepperate it out for deserializevariant
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -32,12 +32,9 @@ compile_error!("feature \"client\" and feature \"server\" cannot be enabled at t pub use crate::error::ProtocolError; -/// Traits for Serialization of objects +/// Traits for Serialization & Deserialization of objects pub mod serialize; -/// Traits for parsing objects -pub mod deserialize; - /// HandshakeSerialize implements the serialization needed during the handhake phase. /// /// The protocol has some minor differences during this phase compared to the regular parsing. |
