enum_cycling 0.1.0

Small macro for working with enums
Documentation

Enum Cycling

Enum Cycling is a crate that allows one to more easily navigate enums in Rust.

The full version of the README can be found on Github

How to include Enum Cycling

Import enum_cycling into your project by adding this line to your Cargo.toml.

[dependencies]
enum_cycling = "0.1.0"
enum_cycling_derive = "0.1.0"

# You can also just use the "derive" feature
# enum_cycling = { version = "0.1.0", features = ["derive"]}