8 unstable releases (3 breaking)

new 0.4.2 Nov 4, 2024
0.4.1 Nov 1, 2024
0.3.0 Aug 19, 2024
0.2.0 Aug 18, 2024
0.1.2 Aug 1, 2024

#335 in Debugging

Download history 321/week @ 2024-07-29 65/week @ 2024-08-05 194/week @ 2024-08-12 183/week @ 2024-08-19 18/week @ 2024-08-26 8/week @ 2024-09-02 20/week @ 2024-09-09 48/week @ 2024-09-16 17/week @ 2024-09-23 37/week @ 2024-09-30 145/week @ 2024-10-07 70/week @ 2024-10-14 25/week @ 2024-10-21 284/week @ 2024-10-28

525 downloads per month
Used in pyri_tooltip

MIT/Apache

22KB
518 lines

tiny_bail

Crates.io Docs License

Bailing is an error-handling pattern that takes the middle path between unwrap and ?:

  • Compared to unwrap: Bail will return, continue, or break instead of panicking.
  • Compared to ?: Bail will log or ignore the error instead of propagating it.

The middle path avoids unwanted panics without the ergonomic challenges of propagating errors with ?.

Getting started

This crate provides six macro variants:

Along with their tiny aliases: r!, rq!, c!, cq!, b!, and bq!.

The macros support Result, Option, and bool types out of the box. You can implement IntoResult to extend this to other types.

Example

use tiny_bail::prelude::*;

// With `tiny_bail`:
fn increment_last(arr: &mut [i32]) {
    *r!(arr.last_mut()) += 1;
}

// Without `tiny_bail`:
fn increment_last_manually(arr: &mut [i32]) {
    if let Some(x) = arr.last_mut() {
        *x += 1;
    } else {
        tracing::warn!("Bailed at src/example.rs:34:18: `arr.last_mut()` is `None`");
        return;
    }
}

License

This crate is available under either of MIT or Apache-2.0 at your choice.

Dependencies

~350–500KB