#enum #primitive #fromprimitive #built-in #integer #enums #enum-primitive

enum_primitive

Macro to generate num::FromPrimitive instances for enum that works in Rust 1.0

4 releases

Uses old Rust 2015

0.1.1 Jan 9, 2017
0.1.0 Aug 13, 2015
0.0.2 Apr 8, 2015
0.0.1 Apr 7, 2015
Download history 24965/week @ 2023-10-26 19540/week @ 2023-11-02 20483/week @ 2023-11-09 21366/week @ 2023-11-16 15196/week @ 2023-11-23 17825/week @ 2023-11-30 18339/week @ 2023-12-07 15091/week @ 2023-12-14 9498/week @ 2023-12-21 8435/week @ 2023-12-28 14508/week @ 2024-01-04 16349/week @ 2024-01-11 21008/week @ 2024-01-18 19739/week @ 2024-01-25 19484/week @ 2024-02-01 17058/week @ 2024-02-08

80,141 downloads per month
Used in fewer than 92 crates

MIT license

9KB
126 lines

enum_primitive Build Status

This crate exports a macro enum_from_primitive! that wraps an enum declaration and automatically adds an implementation of num::FromPrimitive (reexported here), to allow conversion from primitive integers to the enum. It therefore provides an alternative to the built-in #[derive(FromPrimitive)], which requires the unstable std::num::FromPrimitive and is disabled in Rust 1.0.

Documentation

https://andersk.github.io/enum_primitive-rs/enum_primitive/

Usage

Add the following to your Cargo.toml file:

[dependencies]
enum_primitive = "*"

Import the crate using #[macro_use] extern crate enum_primitive, and wrap your enum declaration inside the enum_from_primitive! macro.

Example

#[macro_use] extern crate enum_primitive;
extern crate num;
use num::FromPrimitive;

enum_from_primitive! {
#[derive(Debug, PartialEq)]
enum FooBar {
    Foo = 17,
    Bar = 42,
    Baz,
}
}

fn main() {
    assert_eq!(FooBar::from_i32(17), Some(FooBar::Foo));
    assert_eq!(FooBar::from_i32(42), Some(FooBar::Bar));
    assert_eq!(FooBar::from_i32(43), Some(FooBar::Baz));
    assert_eq!(FooBar::from_i32(91), None);
}

Dependencies

~245KB