1 min read

vex-macros#

Procedural macros for the VEX Protocol.

Features#

  • Derive Macros - Automatic trait implementations
  • Attribute Macros - Declarative agent configuration

Installation#

TOML
[dependencies]
vex-macros = "0.1"

Quick Start#

Rust
use vex_macros::Agent;

#[derive(Agent)]
struct MyAgent {
    name: String,
    state: AgentState,
}

License#

Apache-2.0 License - see LICENSE for details.

Found something unclear or incorrect?Report issueor useEdit this page
Edit this page on GitHub