cgp-component-macro-lib 0.3.0

Context-generic programming core component macros implemented as a library.
Documentation
1
2
3
4
5
6
7
8
9
use syn::token::Mut;
use syn::{Ident, Type};

pub struct GetterField {
    pub field_name: Ident,
    pub field_type: Type,
    pub provider_type: Type,
    pub field_mut: Option<Mut>,
}