maiko-macros
Procedural macros for the Maiko actor runtime.
#[derive(Event)]: Implementsmaiko::Eventfor your type.
Usage:
use Event;
Publishing notes:
- This crate must be published before
maikocan depend on it by version. - Edition: 2024.
Notes:
- The derive macro requires the
maikocrate in your dependency tree because it implements themaiko::Eventtrait for your type. - Generic and
whereclauses are preserved when deriving. - Recommended import path in applications:
use maiko_macros::Event;