reword

Travis Appveyor Crates.io Docs

A macro for generating structures for value lookup.

Examples

Add this to Cargo.toml:

toml [dependencies] reword = "0.3"

And this to main.rs:

```rust

[macro_use]

extern crate reword;

reword! { enum Lang: &'static str { Hi { ENUK | ENUS = "Hi"; NO = "Hei"; } } }

fn main() { let mut lang = Lang::NO; assert_eq!(lang.reword::(), "Hei");

lang = Lang::EN_UK;
assert_eq!(lang.reword::<Hi>(), "Hi");

lang = Lang::EN_US;
assert_eq!(lang.reword::<Hi>(), "Hi");

} ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.