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

no-std scoped-futures

A utility crate for imposing upper bounds on Future lifetimes

5 releases

0.1.4 Oct 23, 2024
0.1.3 Jan 2, 2023
0.1.2 Nov 8, 2022
0.1.1 Nov 8, 2022
0.1.0 Nov 8, 2022

#94 in Asynchronous

Download history 29070/week @ 2024-09-15 33153/week @ 2024-09-22 37517/week @ 2024-09-29 36270/week @ 2024-10-06 38685/week @ 2024-10-13 45283/week @ 2024-10-20 42002/week @ 2024-10-27 37154/week @ 2024-11-03 38854/week @ 2024-11-10 36244/week @ 2024-11-17 31318/week @ 2024-11-24 36945/week @ 2024-12-01 36963/week @ 2024-12-08 31733/week @ 2024-12-15 12648/week @ 2024-12-22 15656/week @ 2024-12-29

99,129 downloads per month
Used in 46 crates (7 directly)

MIT/Apache

13KB
118 lines

scoped-futures

A utility crate for imposing upper bounds on Future lifetimes. This is especially useful for callbacks that use higher-ranked lifetimes in their return type, where it can prevent 'static bounds from being placed on a returned Future.

This crate is effectively a port of Sabrina Jewson's better alternative to lifetime GATs for Futures.

Example

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);
    })
}

Dependencies

~47KB