bid
This library streamlines the process of defining and branded ID types through the bid::define! macro.
bid::define!
Example:
```rs bid::define!(pub struct UserId(i32));
pub struct User { pub id: UserId, pub username: String, // ... } ```