#future #upper-bound #scope #hrtb #liftime

无std scoped-futures

用于对Future生命周期施加上界的实用程序包

4次发布

0.1.3 2023年1月2日
0.1.2 2022年11月8日
0.1.1 2022年11月8日
0.1.0 2022年11月8日

#165异步

Download history • Rust 包仓库 20488/week @ 2024-03-14 • Rust 包仓库 22017/week @ 2024-03-21 • Rust 包仓库 22590/week @ 2024-03-28 • Rust 包仓库 23188/week @ 2024-04-04 • Rust 包仓库 24632/week @ 2024-04-11 • Rust 包仓库 22999/week @ 2024-04-18 • Rust 包仓库 21524/week @ 2024-04-25 • Rust 包仓库 23190/week @ 2024-05-02 • Rust 包仓库 20739/week @ 2024-05-09 • Rust 包仓库 22596/week @ 2024-05-16 • Rust 包仓库 17773/week @ 2024-05-23 • Rust 包仓库 20357/week @ 2024-05-30 • Rust 包仓库 19690/week @ 2024-06-06 • Rust 包仓库 18179/week @ 2024-06-13 • Rust 包仓库 16971/week @ 2024-06-20 • Rust 包仓库 13862/week @ 2024-06-27 • Rust 包仓库

73,524 每月下载量
用于 36 个crates (5 直接)

MIT/Apache

13KB
115

scoped-futures

一个实用程序包,用于对Future生命周期施加上界。这对于返回类型中使用高阶生命周期的回调特别有用,它可以防止对返回的Future放置'static界限。

示例

use core::pin::Pin;
use scoped_futures::{ScopedBoxFuture, ScopedFutureExt};

pub struct Db {
    count: u8,
}

impl Db {
    async fn transaction<'a, F, T, E>(&mut self, callback: F) -> Result<T, E>
    where
        // ScopedBoxFuture imposes a lifetime bound on 'b which prevents the hrtb below needing
        // to be satisfied for all lifetimes (including 'static) and instead only lifetimes
        // which live at most as long as 'a
        F: for<'b /* where 'a: 'b */> FnOnce(&'b mut Self) -> ScopedBoxFuture<'a, 'b, Result<T, E>> + Send + 'a,
        T: 'a,
        E: 'a,
    {
        callback(self).await
    }
}`

pub async fn test_transaction<'a, 'b>(
    db: &mut Db,
    ok: &'a str,
    err: &'b str,
    is_ok: bool,
) -> Result<&'a str, &'b str> {
    // note the lack of `move` or any cloning in front of the closure
    db.transaction(|db| async move {
        db.count += 1;
        if is_ok {
            Ok(ok)
        } else {
            Err(err)
        }
    }.scope_boxed()).await?;

    // note that `async` can be used instead of `async move` since the callback param is unused
    db.transaction(|_| async {
        if is_ok {
            Ok(ok)
        } else {
            Err(err)
        }
    }.scope_boxed()).await
}

#[test]
fn test_transaction_works() {
    futures::executor::block_on(async {
        let mut db = Db { count: 0 };
        let ok = String::from("ok");
        let err = String::from("err");
        let result = test_transaction(&mut db, &ok, &err, true).await;
        assert_eq!(ok, result.unwrap());
        assert_eq!(1, db.count);
    })
}

依赖项

~10KB