Macro mapping_json_struct

Source
macro_rules! mapping_json_struct {
    (
        $(#[$meta:meta])*
        $vis:vis struct $name:ident {
            $($field_vis:vis $field_name:ident : $field_type:ty),*
            $(,)?
        }
    ) => { ... };
}