#enums #discriminant #proc-macro #extracting #zero #safe #minimalist

no-std safe-discriminant

A minimalistic, no_std compatible trait and procedural macro for extracting discriminants from enums at zero cost

2 unstable releases

0.2.0 Aug 19, 2024
0.1.0 Aug 16, 2024

#573 in Rust patterns

Download history 269/week @ 2024-08-14 37/week @ 2024-08-21 14/week @ 2024-08-28 52/week @ 2024-09-11 92/week @ 2024-09-18 37/week @ 2024-09-25 68/week @ 2024-10-02 104/week @ 2024-10-09

322 downloads per month

BSD-3-Clause

7KB

safe-discriminant

safe-discriminant provides a minimalistic, no_std compatible trait and procedural macro for extracting discriminants from enums at zero cost. It automatically generates unsafe { ... } blocks, ensuring semantic safety so you don’t have to worry about it.

Installation

This crate is available on crates.io and can be easily included in your project by:

  • Adding the following line to your Cargo.toml:
    [dependencies]
    safe-discriminant = "0.2.0"
    
  • Or runing this command in your cargo project:
    $ cargo add safe-discriminant
    

Usage

use safe_discriminant::Discriminant;

#[derive(Discriminant)]
#[repr(i64)]
pub enum Foo<T> {
    A = 1,
    B(T) = -1,
    C { fst: T, snd: T } = -2,
}

fn main() {
    let a: Foo<u8> = Foo::A;
    let b = Foo::B(5);
    let c = Foo::C { fst: 2, snd: 3 };
    assert_eq!(a.discriminant(), 1);
    assert_eq!(b.discriminant(), -1);
    assert_eq!(c.discriminant(), -2);
}

Similar Projects

  • strum provides a collection of macros designed to simplify working with enums. Among these macros is EnumDiscriminants, which extracts the name of each variant from the enum and organizes them into a separate enum.

Dependencies

~260–710KB
~17K SLoC