#enums #u8 #mapping #enums-variant #generation #from-str #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

#37 in #from-str

Download history 5988/week @ 2024-12-01 5243/week @ 2024-12-08 4692/week @ 2024-12-15 2333/week @ 2024-12-22 2187/week @ 2024-12-29 4463/week @ 2025-01-05 4062/week @ 2025-01-12 3696/week @ 2025-01-19 3655/week @ 2025-01-26 4393/week @ 2025-02-02 3997/week @ 2025-02-09 3156/week @ 2025-02-16 4286/week @ 2025-02-23 4209/week @ 2025-03-02 4336/week @ 2025-03-09 5737/week @ 2025-03-16

18,764 downloads per month
Used in 22 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

~73KB