https://github.com/mintlu8/tlbf
Type level bitflags.
https://github.com/mintlu8/tlbf
Last synced: 22 days ago
JSON representation
Type level bitflags.
- Host: GitHub
- URL: https://github.com/mintlu8/tlbf
- Owner: mintlu8
- License: mit
- Created: 2023-11-17T04:24:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-05T03:41:39.000Z (over 2 years ago)
- Last Synced: 2025-12-04T05:03:19.109Z (7 months ago)
- Language: Rust
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tlbf
Type level bitflags.
## Example
```rust
tlbf!(
pub Color: u64 {
Red,
Green,
Blue,
}
);
```