reword 1.0.0

A macro for generating structures for value lookup.
Documentation

reword

Travis Appveyor Crates.io Docs

A macro for generating structures for value lookup.

The structures generated are not exported out of its module by default. Use pub before theenum keyword to export it. Attributes can be attached to both the enum and the structures generated. The Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, and Hash traits are automatically derived for the types using the derive attribute.

Examples

Add this to Cargo.toml:

[dependencies]
reword = "1"

And this to main.rs:

#[macro_use]
extern crate reword;

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

fn main() {
    let mut lang = Lang::NO;
    assert_eq!(lang.reword::<Hi>(), "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.