concision-derive 0.3.1

custom derive macros for the concision framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
    Appellation: attrs <module>
    Created At: 2025.12.07:11:51:04
    Contrib: @FL03
*/
pub use self::{config::ConfigAttr, params::ParamsAttr};

mod config;
mod params;

/// custom attributes for the concision derive macro
#[derive(Clone, Debug, Default)]
pub struct CncAttr {
    pub config: Option<ConfigAttr>,
    pub params: Option<ParamsAttr>,
}