#constant #discriminant #enum #repr

macro no-std enum-repr

Derive enum repr conversions compatible with type aliases

10 releases

0.2.6 Feb 17, 2020
0.2.5 Oct 1, 2019
0.2.4 Mar 16, 2019
0.2.3 Jan 20, 2019
0.1.1 Jul 21, 2018

#1316 in Rust patterns

Download history 1906/week @ 2022-12-06 1751/week @ 2022-12-13 1967/week @ 2022-12-20 854/week @ 2022-12-27 2076/week @ 2023-01-03 1232/week @ 2023-01-10 3176/week @ 2023-01-17 2655/week @ 2023-01-24 2909/week @ 2023-01-31 2484/week @ 2023-02-07 2223/week @ 2023-02-14 1980/week @ 2023-02-21 2565/week @ 2023-02-28 2308/week @ 2023-03-07 1868/week @ 2023-03-14 1500/week @ 2023-03-21

8,667 downloads per month
Used in 4 crates

MIT/Apache

15KB
179 lines

enum-repr

Build Status Crates.io Documentation

Generate enum repr conversions compatible with type aliases. Works on no_std.

EnumRepr proc macro takes an type argument and defines two functions for the enum used on:

fn repr(&self) -> EnumReprType
fn from_repr(x: EnumReprType) -> Option<Self>

The real enum discriminant still remains isize.

extern crate enum_repr;
extern crate libc;

use libc::*;

use enum_repr::EnumRepr;

#[EnumRepr(type = "c_int")]
#[derive(Debug, PartialEq)]
pub enum IpProto {
    IP = IPPROTO_IP,
    IPv6 = IPPROTO_IPV6,
    //
}

fn main() {
    assert_eq!(IpProto::IP.repr(), IPPROTO_IP);
    assert_eq!(IpProto::from_repr(IPPROTO_IPV6), Some(IpProto::IPv6));
    assert!(IpProto::from_repr(12345).is_none());
}

License

This project is licensed under either of

at your option.

Dependencies

~0.7–1MB
~27K SLoC