comfund_macro_impl 0.1.2

Implementation of `comfund` macros.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use proc_macro2::TokenStream;

pub enum Query {
    Flat(syn::Type),
    Generated(Generated),
}

pub struct Generated {
    definition: TokenStream,
    fields: Vec<syn::Field>,
}