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