vec-of-enum 0.1.1

Helper macros for a Vec of enum values
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Guidelines

## General

* Read `Cargo.toml` before executing any tasks
* Don't create git commits

## Commands

Always use `mise run ...` commands to run the tests / lints.

* Run tests: `mise run test` (use this instead of `cargo test`)
* Run specific test: `mise run test <test_file_path>` (use this instead of `cargo test`)
* Format code: `mise run fmt` (use this instead of `cargo fmt`)
* Lint code: `mise run lint` (use this instead of `cargo clippy`)
* Check types: `mise run check` (use this instead of `cargo check`)

Always execute `mise run fmt` after completing your task.