1 unstable release

0.2.1 Aug 4, 2025

#131 in #operation

MIT/Apache

310KB
7K SLoC

Windows async types

The windows-future crate provides stock async support for Windows APIs.

Start by adding the following to your Cargo.toml file:

[dependencies.winpty-rs-windows-future]
version = "0.2"

Use the Windows async types as needed:

use winpty_rs_windows_future::*;
use winpty_rs_windows_result::*;

fn main() -> Result<()> {
    // This result will be available immediately.
    let ready = IAsyncOperation::ready(Ok(123));
    assert_eq!(ready.get()?, 123);

    let ready = IAsyncOperation::spawn(|| {
        // Some lengthy operation goes here...
        Ok(456)
    });

    assert_eq!(ready.get()?, 456);

    Ok(())
}

Dependencies

~175–570KB
~14K SLoC