#future #async #runtocompletion

no-std completion

Utilities for writing completion-based asynchronous code

3 unstable releases

0.2.1 Apr 8, 2021
0.2.0 Feb 22, 2021
0.1.0 Jan 17, 2021

#1049 in Asynchronous

22 downloads per month

MIT/Apache

440KB
10K SLoC

completion

Utilities for writing completion-based asynchronous code.

A completion future is a future that must be run to completion, unlike regular futures which can be dropped and stopped at any time without the future's knowledge. This allows for more flexibility for the implementer of the future and allows APIs like io_uring and IOCP to be wrapped in a zero-cost way.

This is based off this RFC by Matthias247.

Features

License: MIT OR Apache-2.0


lib.rs:

Utilities for writing completion-based asynchronous code.

A completion future is a future that must be run to completion, unlike regular futures which can be dropped and stopped at any time without the future's knowledge. This allows for more flexibility for the implementer of the future and allows APIs like io_uring and IOCP to be wrapped in a zero-cost way.

This is based off this RFC by Matthias247.

Features

Dependencies

~135–445KB