#async #lazy-static #lazily #evaluated #declaring #macro

macro async_static

A macro for declaring async lazily evaluated statics in Rust

2 releases

0.1.3 Feb 20, 2021
0.1.2 Feb 19, 2021
0.1.1 Feb 19, 2021
0.1.0 Feb 19, 2021

#9 in #declaring

Download history 4/week @ 2024-11-08 11/week @ 2024-11-15 27/week @ 2024-11-22 48/week @ 2024-11-29 31/week @ 2024-12-06 33/week @ 2024-12-13 5/week @ 2024-12-20 2/week @ 2025-01-03 24/week @ 2025-01-10 23/week @ 2025-01-17 11/week @ 2025-01-24 15/week @ 2025-01-31 33/week @ 2025-02-07 31/week @ 2025-02-14

82 downloads per month
Used in 5 crates (3 directly)

MIT/Apache

8KB
76 lines

Async Static

A macro for declaring async lazily evaluated statics in Rust.


Basic usage

dependencies

async_static = "0.1"
once_cell = "1"
# Only used in the current example
tokio = { version = "1", features = ["full"] }

src

use async_static::async_static;
use tokio::time::sleep;

async fn get_num() -> i32 {
    println!("hello world");
    sleep(Duration::from_millis(100)).await;
    123
}

async_static! {
    static ref FOO:i32 = get_num().await;
}

/// run print
/// ```
/// hello world
/// The result of the first call: 123
/// The result of the second call: 123
/// ```
#[tokio::test]
async fn test() {
    // The first call, print hello world
    let n = FOO.await;
    println!("The result of the first call: {}", n);

    // The second call, nothing print
    let n = FOO.await;
    println!("The result of the second call: {}", n);
}

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

~1.5MB
~38K SLoC