#future #async #heap-allocation #no-std

no-std stackfuture

StackFuture is a wrapper around futures that stores the wrapped future in space provided by the caller

4 releases (2 breaking)

0.3.0 Nov 17, 2022
0.2.0 Sep 7, 2022
0.1.1 Aug 15, 2022
0.1.0 Aug 10, 2022

#461 in Asynchronous

Download history 269/week @ 2024-01-08 539/week @ 2024-01-15 562/week @ 2024-01-22 734/week @ 2024-01-29 610/week @ 2024-02-05 821/week @ 2024-02-12 486/week @ 2024-02-19 485/week @ 2024-02-26 1186/week @ 2024-03-04 1062/week @ 2024-03-11 724/week @ 2024-03-18 121/week @ 2024-03-25 141/week @ 2024-04-01 155/week @ 2024-04-08 143/week @ 2024-04-15 146/week @ 2024-04-22

588 downloads per month
Used in asynchelp

MIT license

28KB
335 lines

StackFuture

crates.io docs.rs

This crate defines a StackFuture wrapper around futures that stores the wrapped future in space provided by the caller. This can be used to emulate dynamic async traits without requiring heap allocation. Below is an example of how use StackFuture:

use stackfuture::*;

trait PseudoAsyncTrait {
    fn do_something(&self) -> StackFuture<'static, (), { 512 }>;
}

impl PseudoAsyncTrait for i32 {
    fn do_something(&self) -> StackFuture<'static, (), { 512 }> {
        StackFuture::from(async {
            // function body goes here
        })
    }
}

async fn use_dyn_async_trait(x: &dyn PseudoAsyncTrait) {
    x.do_something().await;
}

async fn call_with_dyn_async_trait() {
    use_dyn_async_trait(&42).await;
}

This is most useful for cases where async functions in dyn Trait objects are needed but storing them in a Box is not feasible. Such cases include embedded programming where allocation is not available, or in tight inner loops where the performance overhead for allocation is unacceptable. Note that doing this involves tradeoffs. In the case of StackFuture, you must set a compile-time limit on the maximum size of future that will be supported. If you need to support async functions in dyn Trait objects but these constraints do not apply to you, you may be better served by the async-trait crate.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

No runtime deps