#enums #string #macro #proc-macro #u8 #values #enum-utils

enum-utils-from-str

Code generation for mapping from strings to arbitrary values

2 releases

0.1.2 Oct 14, 2019
0.1.0 May 7, 2019

#1484 in Rust patterns

Download history 3001/week @ 2024-03-14 3400/week @ 2024-03-21 2889/week @ 2024-03-28 3305/week @ 2024-04-04 3485/week @ 2024-04-11 3716/week @ 2024-04-18 2934/week @ 2024-04-25 2833/week @ 2024-05-02 3018/week @ 2024-05-09 2908/week @ 2024-05-16 2916/week @ 2024-05-23 3661/week @ 2024-05-30 3969/week @ 2024-06-06 4160/week @ 2024-06-13 4035/week @ 2024-06-20 3649/week @ 2024-06-27

16,735 downloads per month
Used in 16 crates (via enum-utils)

MIT license

13KB
286 lines

enum-utils

crates.io docs.rs Build Status

A set of procedural macros for deriving useful functionality on enums.

See the API docs for more information.

FromStr

An efficient, configurable FromStr implementation for C-like enums.

#[derive(Debug, PartialEq, enum_utils::FromStr)]
enum Test {
    Alpha,
    Beta,
}

assert_eq!("Alpha".parse(), Ok(Test::Alpha));
assert_eq!("Beta".parse(), Ok(Test::Beta));

IterVariants

A static method returning an iterator over the variants of an enum.

#[derive(Debug, PartialEq, Eq, enum_utils::IterVariants)]
#[repr(u8)]
pub enum Direction {
    North = 1,
    East,
    South,
    West,
}

use Direction::*;
assert_eq!(Direction::iter().collect::<Vec<_>>(), vec![North, East, South, West]);

TryFromRepr and ReprFrom

Conversion to and from the discriminant of a C-like enum.

use std::convert::TryInto;

#[derive(Debug, Clone, Copy, PartialEq, Eq, enum_utils::ReprFrom, enum_utils::TryFromRepr)]
#[repr(u8)]
pub enum Direction {
    North = 1,
    East,
    South,
    West
}

use Direction::*;
assert_eq!(1u8, North.into());
assert_eq!(4u8, West.into());
assert_eq!(North, 1u8.try_into().unwrap());
assert_eq!(West,  4u8.try_into().unwrap());

Dependencies

~82KB