1 2 3 4 5 6 7 8 9 10 11 12
use codama_macros::codama; #[codama(argument())] pub struct EmptyTest; #[codama(argument(number(u8)))] pub struct NameMissingTest; #[codama(argument("age"))] pub struct TypeMissingTest; fn main() {}