1 unstable release

0.1.0 Feb 5, 2019

#14 in #from-str

Download history 25/week @ 2024-07-22 45/week @ 2024-07-29 29/week @ 2024-08-05 7/week @ 2024-08-12 9/week @ 2024-08-19 24/week @ 2024-08-26 18/week @ 2024-09-02 30/week @ 2024-09-09 17/week @ 2024-09-16 31/week @ 2024-09-23 15/week @ 2024-09-30 14/week @ 2024-10-07 15/week @ 2024-10-14 8/week @ 2024-10-21 24/week @ 2024-10-28 30/week @ 2024-11-04

79 downloads per month
Used in 2 crates

MIT license

4KB

enum-from-str-rs

Allow derive FromStr for enums

Overview

This library adds the #[derive(FromStr)] attribute for enums, thus allowing parsing strings into enum variants. Even though there are other libraries that allows this, like enum_derive, it only allows you to parse from strings with the exact name of a variant. This library allows you to define a custom string for each enum variant.

Basic usage

use enum_from_str::ParseEnumVariantError;
use enum_from_str_derive::FromStr;

#[derive(FromStr)]
enum SomeEnum {
    #[from_str="foo"]
    Foo,
    Bar, // equals to #[from_str="Bar"]
}

fn example() {
    "foo".parse::<SomeEnum>().unwrap();
    "Bar".parse::<SomeEnum>().unwrap();
}

Known issues

Currently, proc-macro crates doesn't allow exporting anything other than the proc-macro function. That's why ParseEnumVariantError is in a different crate. When Rust allows it, it should be moved into a single crate.

Dependencies

~2MB
~48K SLoC