1 unstable release
0.1.0 | Sep 6, 2021 |
---|
#2004 in Rust patterns
10,198 downloads per month
Used in 2 crates
(via ts-bindgen-gen)
11KB
90 lines
enum_to_enum
enum_to_enum exposes a derive macro to easily generate possibly effectful enum-to-enum conversions: #[derive(FromEnum)]
.
When should you use enum_to_enum?
Many transformation pipelines are readily expressed as conversions from one enum to another. However, these transformations can be tedious to write, especially if they generate some additional effects in addition to data mapping. enum_to_enum makes it easy to generate these conversions.
enum_to_enum in action
Show cargo.toml
[dependencies]
enum_to_enum = "0.1.0"
use enum_to_enum::FromEnum;
#[derive(Debug)]
enum Src {
Case1(),
Case2(SrcStrField),
Case3 { a: SrcStrField, b: u8 },
}
#[derive(FromEnum, Debug, PartialEq, Eq)]
#[from_enum(Src)]
enum Dest {
Case1(),
#[from_case(Case2)]
DestCase2(DestStrField),
#[from_case(Src = Case3)]
DestCase3 { a: DestStrField, b: u8 },
}
#[derive(Debug, PartialEq, Eq)]
struct SrcStrField(String);
#[derive(Debug, PartialEq, Eq)]
struct DestStrField(String);
impl From<SrcStrField> for DestStrField {
fn from(src: SrcStrField) -> DestStrField {
DestStrField(src.0 + " world")
}
}
assert_eq!(
Dest::from(Src::Case1()),
Dest::Case1(),
);
assert_eq!(
Dest::from(Src::Case2(SrcStrField(String::from("hello")))),
Dest::DestCase2(DestStrField(String::from("hello world"))),
);
assert_eq!(
Dest::from(Src::Case3 {
a: SrcStrField(String::from("hello")),
b: 100u8,
}),
Dest::DestCase3 {
a: DestStrField(String::from("hello world")),
b: 100u8,
},
);
License
Licensed under either of Apache License, Version 2.0 or MIT license at your option.Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in enum_to_enum by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~1.5MB
~35K SLoC