7 lines
127 B
Rust
7 lines
127 B
Rust
mod client_registration;
|
|
|
|
trait Serializable {
|
|
fn serialize(&self) -> Vec<u8>;
|
|
fn deserialize(buf: Vec<u8>) -> Self;
|
|
}
|