enum-fields
Quickly access shared enum fields in Rust.
Installation
Add the enum-fields
crate to your Cargo.toml
file:
[]
= "*"
Let your enum
derive from enum_fields::EnumFields
like this:
Usage
The following example showcases an enum Entity
, which contains two
variants: Company
and Person
.
/// An entity that can be either a `Company` or a `Person`.
Since Entity
derives from [enum_fields::EnumFields
], it now contains
two field accessor functions (getters): Entity::name()
and
Entity::ceo()
.
let company = Company ;
let person = Person ;
println!;
println!;
Note that both Company
and Person
have a field named name
. This
enforces enum-fields
to let Entity::name()
return the type directly.
// Since [`Entity`] has two variants that both have the `name` field,
// `Entity::name(&self)` returns the `&String`.
assert_eq!;
assert_eq!;
However, only Company
has field ceo
, which therefore makes
Entity::ceo()
return an optional getter: Option<&String>
.
// Only `Company` has field `ceo`, so it returns an `Option<&String>`,
// since a `Person` returns [`None`].
assert_eq!;
assert_eq!;
License
Licensed under either Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in EnumFields by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.