tactix-macros 0.0.7

Procedural macros for the tactix actor framework.
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 3.88 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 274.16 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 18s Average build duration of successful builds.
  • all releases: 18s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • ryardley/tactix
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ryardley

Derive macro for the Message trait.

Usage

use macros::Message;

// Fire-and-forget message (Response = ())
#[derive(Message)]
struct Increment;

// Message with a response
#[derive(Message)]
#[response(u64)]
struct GetCount;