#error #error-handling #reduce #amount #extension #helps #handwriting

macro justerror

Extension to thiserror that helps reduce the amount of handwriting

3 releases (stable)

1.1.0 Feb 13, 2023
1.0.0 Dec 7, 2022
0.1.0 Nov 15, 2022

#684 in Procedural macros

Download history 57/week @ 2023-11-21 92/week @ 2023-11-28 64/week @ 2023-12-05 39/week @ 2023-12-12 89/week @ 2023-12-19 18/week @ 2023-12-26 164/week @ 2024-01-02 180/week @ 2024-01-09 32/week @ 2024-01-16 7/week @ 2024-01-23 10/week @ 2024-02-06 29/week @ 2024-02-13 40/week @ 2024-02-20 49/week @ 2024-02-27 12/week @ 2024-03-05

140 downloads per month

MIT license

18KB
349 lines

justerror

github crates.io docs.rs

This macro piggybacks on thiserror crate and is supposed to reduce the amount of handwriting when you want errors in your app to be described via explicit types (rather than anyhow).

Installation

Add to Cargo.toml:

justerror = "0.1"

Add to main.rs:

#[macro_use]
extern crate justerror;

Usage

This macro takes a subject struct or enum and applies thiserror attributes with predefined #[error] messages.

Generally, you can attach #[Error] macro to an error type and be done with it.

#[Error]
enum EnumError {
    Foo,
    Bar {
        a: &'static str,
        b: usize
    },
}

eprintln!("{}", EnumError::Bar { a: "Hey!", b: 42 });

// EnumError::Bar
// === ↴
// a: Hey!
// b: 42

Macro accepts two optional arguments:

  • desc: string
  • fmt: display | debug | "<custom format>"

Both can be applied at the root level.

#[Error(desc = "My emum error description", fmt = debug)]
enum EnumError {
    Foo(usize),
}

And at the variant level.

#[Error(desc = "My emum error description", fmt = debug)]
enum EnumError {
    #[error(desc = "Foo error description", fmt = display)]
    Foo(usize),
}

fmt can also be applied to individual fields.

#[Error(desc = "My emum error description", fmt = debug)]
enum EnumError {
    #[error(desc = "Foo error description", fmt = display)]
    Foo(#[fmt(">5")] usize),
}

See tests for more examples.

License

MIT.

Dependencies

~1.5MB
~32K SLoC