The best macros fo RUST

About this crate

This crate was created when I had a macros for creating pub structs where all fileds are public.

Last changes

Public struct

Previously, to implement a public structure with public fields, you wrote ```rust pub struct Ticket { pub id: String, pub museumid: String, pub description: String, pub date: String, pub time: String, pub quantitygroups: Vec, }

Now you can write like this rust use bestmacros::publicstruct;

...

[public_struct]

struct Ticket { id: String, museumid: String, description: String, date: String, time: String, quantitygroups: Vec, }

``` And this struct and all her fields become a public.

PS

Write your ideas in issue and I will try to implement them