bidirectional_enum

Crates.iobidirectional_enum
lib.rsbidirectional_enum
version0.2.0
sourcesrc
created_at2023-01-10 14:16:36.182611
updated_at2023-01-10 14:32:06.712281
descriptionAutomatically generates conversions between an enum type and any other type
homepagehttps://github.com/Giftzwerg02/bidirectional_enum
repository
max_upload_size
id755375
size4,881
(Giftzwerg02)

documentation

README

Bidirectional Enums

A macro to automatically generate a two-way binding between an enum-type and any other type.

Example

use std::error::Error;

#[macro_use]
extern crate bidirectional_enum;

bi_enum! {
    #[derive(Debug)]
    enum SomeEnum <=> char 
    {
        T1 <=> 'a',
        T2 <=> 'b'
    }
}

fn main() -> Result<(), Box<dyn Error>> {
    let t1 = SomeEnum::T1;

    // from enum to char
    let a = char::from(t1); 
    dbg!(&a); // 'a'

    // from char back to enum
    let t1 = SomeEnum::try_from(a);
    dbg!(&t1); // Ok(SomeEnum::T1)

    // invalid char
    let err = SomeEnum::try_from('c');
    dbg!(&err); // Err(EnumTryFromErr { from: "char", to: "SomeEnum" })

    Ok(())
}
Commit count: 0

cargo fmt