#variant #error #enums #companion #function #deriving #enum-extract

enum-extract-error

A companion crate for enum-extract that exports an error type

2 releases

0.1.1 Dec 30, 2023
0.1.0 Dec 28, 2023

#1189 in Rust patterns

Download history 26/week @ 2023-12-30 4/week @ 2024-02-10 10/week @ 2024-02-17 30/week @ 2024-02-24 14/week @ 2024-03-02 16/week @ 2024-03-09 106/week @ 2024-03-16 12/week @ 2024-03-23 37/week @ 2024-03-30 8/week @ 2024-04-06

60 downloads per month
Used in 2 crates

MIT/Apache

7KB

enum-extract

License MIT License Apache 2.0

A deriving proc-macro that generates functions to the inner members of the enum.

This is a heavily modified fork of enum-as-inner. Some of the key differences are listed below:

  1. as_[variant], into_[variant] and as_[variant]_mut methods return a Result that can contain a concrete error type EnumExtractError.
    • The error is returned when the actual variant does not match the expected variant, and it contains both the name of the expected variant and the name of the actual variant for troubleshooting purposes.
    • The error also implements Display with a message of expected {expected}, got {actual}, so that you have a place to start troubleshooting rather than calling unwrap on an Option, or repeatedly writing better error messages by hand.
  2. Added extract_as_[variant], extract_into_[variant] and extract_as_[variant]_mut methods, which panic if the actual variant does not match the expected variant.
    • These are very useful in tests where panicking is acceptable, especially when combined with the better error messages supported by the EnumExtractError struct.

Crates

This project consists of two crates that should be used together. They are separate because crates the export procedural macros can only export procedural macros. They should be treated as a single project, and will therefore be versioned in lock-step.

enum-extract-macro

Dependency Status Crates.io doc.rs

Provides the EnumExtract derive macro that can be used on enums to get as_[variant] functions for each variant, along with other useful functions.

See the documentation for examples and more details.

enum-extract-error

Dependency Status Crates.io doc.rs

Provides the EnumExtractError used as a return value for the as_[variant] functions.

See the documentation for examples and more details.

Dependencies

~0.3–0.8MB
~19K SLoC