Crates.io | enum-try-from |
lib.rs | enum-try-from |
version | 0.0.1 |
source | src |
created_at | 2022-11-22 21:16:57.378655 |
updated_at | 2022-11-22 21:16:57.378655 |
description | Rust macros which create enums with TryFrom trait implementations |
homepage | |
repository | https://github.com/vadorovsky/enum-try-from |
max_upload_size | |
id | 721129 |
size | 14,163 |
Rust macros which create enums with TryFrom
trait implementation.
use enum_try_into::impl_enum_try_from;
impl_enum_try_from!(
#[repr(u16)]
#[derive(PartialEq, Eq, Debug)]
enum MyEnum {
Foo = 0,
Bar = 1,
Baz = 2,
},
u16,
(),
()
);
fn main() {
assert_eq!(MyEnum::try_from(0), Ok(MyEnum::Foo));
assert_eq!(MyEnum::try_from(1), Ok(MyEnum::Bar));
assert_eq!(MyEnum::try_from(2), Ok(MyEnum::Baz));
assert_eq!(MyEnum::try_from(3), Err(()));
}
use enum_try_into::impl_enum_try_from;
use thiserror::Error;
#[derive(Error, Debug, PartialEq, Eq)]
pub enum MyError {
#[error("invalid value")]
InvalidValue,
}
impl_enum_try_from!(
#[repr(u16)]
#[derive(PartialEq, Eq, Debug)]
enum MyEnum {
Foo = 0,
Bar = 1,
Baz = 2,
},
u16,
MyError,
MyError::InvalidValue
);
If the value provided to try_from
should be converted from big endian:
use enum_try_into::impl_enum_try_from_be;
impl_enum_try_from_be!(
#[repr(u16)]
#[derive(PartialEq, Eq, Debug)]
enum MyEnum {
Foo = 0x1234,
Bar = 0x5678,
Baz = 0x9abc,
},
u16,
(),
()
);
fn main() {
assert_eq!(MyEnum::try_from(0x3412), Ok(MyEnum::Foo));
assert_eq!(MyEnum::try_from(0x7856), Ok(MyEnum::Bar));
assert_eq!(MyEnum::try_from(0xbc9a), Ok(MyEnum::Baz));
assert_eq!(MyEnum::try_from(0xdef0), Err(()));
}
Rust projects very often consume values as regular integers and then try to
match them with enums. Doing so, requires implementing the TryFrom
trait for
enums. Example:
#[repr(u16)]
#[derive(PartialEq, Eq, Debug)]
enum MyEnum {
Foo = 0,
Bar = 1,
Baz = 2,
}
impl TryFrom<u16> for MyEnum {
type Error = ();
fn try_from(v: u16) -> Result<Self, Self::Error> {
match v {
0 => Ok(MyEnum::Foo),
1 => Ok(MyEnum::Bar),
2 => Ok(MyEnum::Baz),
_ => Err(()),
}
}
}
fn main() {
assert_eq!(MyEnum::try_from(0), Ok(MyEnum::Foo));
assert_eq!(MyEnum::try_from(1), Ok(MyEnum::Bar));
assert_eq!(MyEnum::try_from(2), Ok(MyEnum::Baz));
assert_eq!(MyEnum::try_from(3), Err(()));
}
It requires listing all enum variants multiple times and also requires writing down new variants multiple times when adding them to the existing enum.
The goal of this crate is to avoid that and define an enum with variants only once.