enum-methods

Enum getter/is_XXX method generation.

crates.io

docs.rs

Usage

In your Cargo.toml, add this line under your [dependencies] section:

toml,no_run enum-methods = "0.0.4"

To use, simply derive and call methods (see the example below).

Why?

Usually when you write an enum with one or zero values, you might want to add a set of getters for them. As such:

```rust

[derive(Debug)]

enum MyEnum { Foo(i64), Bar(char), Baz(String), }

impl MyEnum { pub fn foo(&self) -> i64 { if let &MyEnum::Foo(i) = self { i } else { panic!("called MyEnum::Foo() on {:?}", self) } } // et cetera }

```

But this gets tedious, and adds a lot code for this simple functionality. Enter enum-methods.

Instead of doing the above with the if let ... else { panic!(...) }, you simply derive from the EnumGetters

```rust

[macro_use]

extern crate enum_methods;

[derive(EnumGetters, Debug)]

enum MyEnum { Foo(i64), Bar(char), Baz(String), }

fn main() { let foo = MyEnum::Foo(42); assert_eq!(foo.foo(), 42); // success! } ```

Requirements and gotchas

Right now, enum-methods has only two derivable options: * EnumGetters * EnumIsA

EnumGetters has a couple of limitations.

EnumIsA is much simpler than the previous; it simply adds is_XXX methods returning a boolean for whether the variant matches or not.

For both methods, all names are automatically converted to snake_case.

License

This software is released under the Apache license 2.0. See the LICENSE file for more details.