Message Macro Derive

Message Macro Derive is a procedural macro crate that provides a custom derive macro for generating serialization and deserialization methods for network structs in Rust. The macro generates code to convert the struct into a byte representation (serialization) and vice versa (deserialization) using big endian order. It aims to simplify the process of working with network protocols and message formats by automating the conversion between Rust structs and byte arrays.

Note: Message Macro Derive is currently in development and has not been thoroughly tested in production environments. Use it with caution and ensure proper testing and validation in your specific use case.

Usage

To use Message Macro Derive, add it as a dependency in your Cargo.toml file:

toml [dependencies] message_macro_derive = "0.1"

Then, import the BeBytes trait from the messagemacroderive crate and derive it for your struct:

```rust use messagemacroderive::BeBytes;

[derive(BeBytes)]

struct MyStruct { // Define your struct fields here... } ```

The BeBytes derive macro will generate the following methods for your struct:

Example

Here's an example showcasing the usage of the Message Macro Derive:

```rust use messagemacroderive::BeBytes;

[derive(BeBytes)]

struct MyStruct { #[U8(size(1), pos(0))] field1: u8, #[U8(size(4), pos(1))] field2: u8, field3: u32, }

fn main() { let my_struct = MyStruct { field1: 1, field2: 7, field3: 42, };

let bytes = my_struct.to_be_bytes();
println!("Serialized bytes: {:?}", bytes);

let deserialized = MyStruct::try_from_be_bytes(&bytes).unwrap().0;
println!("Deserialized struct: {:?}", deserialized);

} ```

In this example, we define a struct MyStruct with three fields. The #[U8] attribute is used to specify the size and position of the fields for serialization. The BeBytes derive macro generates the serialization and deserialization methods for the struct, allowing us to easily convert it to bytes and back.

License

This project is licensed under the MIT License