#enums #extracting #discriminant #traits #minimalist #zero #compatible

macro no-std safe-discriminant-derive

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

#15 in #discriminant

Download history 282/week @ 2024-08-16 36/week @ 2024-08-23 9/week @ 2024-08-30 74/week @ 2024-09-13 87/week @ 2024-09-20 61/week @ 2024-09-27 44/week @ 2024-10-04 100/week @ 2024-10-11

298 downloads per month
Used in safe-discriminant

BSD-3-Clause

9KB
128 lines

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

~235–680KB
~16K SLoC