hexser_macros 0.6.0

Procedural macros for the hexser hexagonal architecture crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Derive macro implementations.
//!
//! Each derive macro (HexDomain, HexPort, HexAdapter, etc.) has its own
//! module with the implementation logic.
//!
//! Revision History
//! - 2025-10-02T00:00:00Z @AI: Initial derive implementations module.

pub mod aggregate;
pub mod directive;
pub mod entity;
pub mod hex_adapter;
pub mod hex_domain;
pub mod hex_port;
pub mod hex_value_item;
pub mod query;
pub mod repository;