vin-macros 8.0.2

Procedural macros that power vin
Documentation
1
2
3
4
5
6
7
8
9
use syn::Ident;

pub fn form_hidden_struct_name(name: &Ident) -> Ident {
    quote::format_ident!("VinHidden{}", name)
}

pub fn form_context_struct_name(name: &Ident) -> Ident {
    quote::format_ident!("VinContext{}", name)
}