#throw #macro #path #details #arguments #error #culpa

macro culpa-macros

Internal implementation details of culpa

3 stable releases

1.0.2 Jan 10, 2024
1.0.1 Jun 29, 2023

#1373 in Procedural macros

Download history 213/week @ 2024-01-05 108/week @ 2024-01-12 44/week @ 2024-01-19 12/week @ 2024-01-26 11/week @ 2024-02-02 459/week @ 2024-02-09 467/week @ 2024-02-16 640/week @ 2024-02-23 592/week @ 2024-03-01 470/week @ 2024-03-08 537/week @ 2024-03-15 335/week @ 2024-03-22 330/week @ 2024-03-29 226/week @ 2024-04-05 268/week @ 2024-04-12 218/week @ 2024-04-19

1,099 downloads per month
Used in 3 crates (via culpa)

MIT/Apache

11KB
246 lines

version-badge license-badge rust-version-badge

Adding support for "throwing functions" to Rust through procedural macros. Functions marked with the throws attribute return Result, but the "Ok" path is used by default and you don't need to wrap ok return values in Ok. To throw errors, use ? or the throws macro.

A fork of Der Fehler updating dependencies and fixing issues while (by my understanding) boats is unable to contribute to open source.

The #[throws] attribute

The throws attribute modifies a function or method to make it return a Result. It takes an optional typename as an argument to the attribute which will be the error type of this function; if no typename is supplied, it uses the default error type for this crate.

Within the function body, returns (including the implicit final return) are automatically "Ok-wrapped." To raise errors, use ? or the throws! macro.

For example, these two functions are equivalent:

#[throws(i32)]
fn foo(x: bool) -> i32 {
    if x {
        0
    } else {
        throw!(1);
    }
}

fn bar(x: bool) -> Result<i32, i32> {
    if x {
        Ok(0)
    } else {
        Err(1)
    }
}

In functions that return Option

The attribute can be used to make a function that returns an Option using the as Option syntax, demonstrated below:

// This function returns `Option<i32>`
#[throws(as Option)]
fn foo(x: bool) -> i32 {
    if x {
        0
    } else {
        throw!();
    }
}

The throw! macro

throw! is a macro which is equivalent to the Err($e)? pattern. It takes an error type and "throws" it.

One important aspect of the throw! macro is that it allows you to return errors inside of functions marked with throws. You cannot just return errors from these functions, you need to use this macro.

Rust Version Policy

This crate only supports the current stable version of Rust, patch releases may use new features at any time.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~330–780KB
~19K SLoC