entity-derive-impl 0.3.0

Internal proc-macro implementation for entity-derive. Use entity-derive instead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: 2025-2026 RAprogramm <andrey.rozanov.vl@gmail.com>
// SPDX-License-Identifier: MIT

//! Shared utilities for code generation.
//!
//! This module contains helper functions used across multiple generators.
//!
//! # Submodules
//!
//! - [`docs`] — Documentation extraction from attributes
//! - [`fields`] — Field assignment generation for `From` implementations
//! - [`marker`] — Generated code marker comments

pub mod docs;
pub mod fields;
pub mod marker;