netencode/lib-rust/workspace-template

Welcome to your netencode experimentation workspace! 🦀

Run the examples:

cargo run --example basic      # Basic type examples
cargo run --example advanced   # Complex structures
cargo run --example playground # Your experiments

Run tests:

cargo test

let value = T::text("hello");
let encoded = value.encode();  // Returns Vec<u8>
let as_string = String::from_utf8_lossy(&encoded);

Happy coding! 🚀