This crate was created when I had a macros for creating pub structs where all fileds are public.
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;
...
struct Ticket {
id: String,
museumid: String,
description: String,
date: String,
time: String,
quantitygroups: Vec
``` And this struct and all her fields become a public.
Write your ideas in issue and I will try to implement them