3 unstable releases

0.10.1 Oct 4, 2024
0.10.0 Jun 11, 2024
0.9.0 May 9, 2024

#219 in Procedural macros

Download history 1331/week @ 2024-06-28 1146/week @ 2024-07-05 1510/week @ 2024-07-12 978/week @ 2024-07-19 1316/week @ 2024-07-26 1404/week @ 2024-08-02 1469/week @ 2024-08-09 1641/week @ 2024-08-16 2483/week @ 2024-08-23 1076/week @ 2024-08-30 1444/week @ 2024-09-06 1520/week @ 2024-09-13 1295/week @ 2024-09-20 912/week @ 2024-09-27 1791/week @ 2024-10-04 1145/week @ 2024-10-11

5,372 downloads per month
Used in 27 crates (3 directly)

MIT license

12KB
96 lines

Winter maybe-async

This crate contains the maybe_async procedural attribute macro and the maybe_await procedural macro which abstract away Rust sync/async.

maybe_async

The maybe_async macro will conditionally add the async keyword to a function it marks depending on the async feature being enabled. To generate the asynchronous version, enable the async feature on the crate. If the async feature is off, the synchronous version will be generated. For example,

// Adding `maybe_async` to trait functions
trait ExampleTrait {
    #[maybe_async]
    fn say_hello(&self);

    #[maybe_async]
    fn get_hello(&self) -> String;
}

// Adding `maybe_async` to regular functions
#[maybe_async]
fn hello_world() {
    // ...
}

When the async feature is enabled, the above code will be transformed into:

trait ExampleTrait {
    async fn say_hello(&self);

    async fn get_hello(&self) -> String;
}

async fn hello_world() {
    // ...
}

maybe_await

To compliment maybe_async we also have the maybe_await procedural macro that conditionally adds the .await keyword to the end of an expression depending on the async feature flag.

#[maybe_async]
fn hello_world() {
    // Adding `maybe_await` to an expression
    let w = maybe_await!(world());

    println!("hello {}", w);
}

#[maybe_async]
fn world() -> String {
    "world".to_string()
}

When the async feature is enabled, the above code will be transformed into:

async fn hello_world() {
    let w = world().await;

    println!("hello {}", w);
}

async fn world() -> String {
    "world".to_string()
}

maybe_async_trait

The maybe_async_trait macro can be applied to traits, and it will conditionally add the async keyword to trait methods annotated with #[maybe_async], depending on the async feature being enabled. It also applies #[async_trait::async_trait(?Send)] to the trait or impl block when the async feature is on.

For example:

// Adding `maybe_async_trait` to a trait definition
#[maybe_async_trait]
trait ExampleTrait {
    #[maybe_async]
    fn hello_world(&self);

    fn get_hello(&self) -> String;
}

// Adding `maybe_async_trait` to an implementation of the trait
#[maybe_async_trait]
impl ExampleTrait for MyStruct {
    #[maybe_async]
    fn hello_world(&self) {
        // ...
    }

    fn get_hello(&self) -> String {
        // ...
    }
}

When async is set, it gets transformed into:

#[async_trait::async_trait(?Send)]
trait ExampleTrait {
    async fn hello_world(&self);

    fn get_hello(&self) -> String;
}

#[async_trait::async_trait(?Send)]
impl ExampleTrait for MyStruct {
    async fn hello_world(&self) {
        // ...
    }

    fn get_hello(&self) -> String {
        // ...
    }
}

License

This project is MIT licensed.

Dependencies

~260–710KB
~17K SLoC