#variant #parse #enums #macro-derive #parser #either

parse-variants

Derive the syn::parse::Parse trait for enumerations and use it to comfortably parse a variant of the enumeration

4 releases (2 stable)

1.0.1 Mar 20, 2023
0.1.1 Jun 12, 2021
0.1.0 Jun 10, 2021

#99 in Procedural macros

Download history 523/week @ 2024-01-03 365/week @ 2024-01-10 457/week @ 2024-01-17 413/week @ 2024-01-24 352/week @ 2024-01-31 257/week @ 2024-02-07 372/week @ 2024-02-14 315/week @ 2024-02-21 261/week @ 2024-02-28 282/week @ 2024-03-06 209/week @ 2024-03-13 394/week @ 2024-03-20 456/week @ 2024-03-27 295/week @ 2024-04-03 264/week @ 2024-04-10 375/week @ 2024-04-17

1,516 downloads per month
Used in 65 crates (6 directly)

MIT license

19KB
225 lines

parse-variants

build lints tests approval-tests maintenance-status

Derive the syn::parse::Parse trait for enumerations and use it to comfortably parse a variant of the enumeration.

Motivation

For a little project, I was trying to parse tokens that could either be an integer literal or an identifier from a ParseBuffer. This inspired me to write a custom derive macro for these kinds of use cases. We can now write

#[derive(parse_variants::Parse)]
enum Number {
    Identifier(syn::Ident),
    Literal(syn::LitInt),
}

and then use this type to parse either variant from a parse buffer like so:

// input : &ParseBuffer
let num : Number = input.parse()?;

This operation returns the first variant (in order of declaration) that can be successfully parsed from the contents of the parse buffer. If none of the variants can be parsed, a compile error is returned. We can use this in any context where we wish to parse this type. The custom derive macro can also be used on much more general enum types, enabling pretty powerful parsing of variant types.

Advanced Use Cases

Enumerations do not have to be as simple as in the example above, because this crate will let you use the custom derive on enumerations with struct-like or tuple-like variants (or any combination of them). See this silly example for a more advanced use case:

mod kw {
    syn::custom_keyword!(meters);
}

#[derive(parse_variants::Parse)]
enum SillyEnum {
    ExpressionInMeters {
        first: syn::Expr,
        _meters: kw::meters,
    },
    IdentPlusPlus(Ident, syn::Token![+], syn::Token![+]),
}

This parses the tokens 16 + 12*length meters as the first and C++ as the second variant.

Consult the crate documentation for more information on how to use this macro and what to watch out for.

Dependencies

~330–780KB
~19K SLoC