codama-macros 0.9.2

Procedural macros for the Codama standard
Documentation
1
2
3
4
5
6
7
8
9
use codama_macros::codama;

#[codama(default_value = argument(name = "amount"))]
pub struct TestExplicit;

#[codama(default_value = argument("amount"))]
pub struct TestImplicit;

fn main() {}