| Crates.io | winpty-rs-windows-future |
| lib.rs | winpty-rs-windows-future |
| version | 0.2.1 |
| created_at | 2025-08-04 22:00:27.839885+00 |
| updated_at | 2025-08-04 22:00:27.839885+00 |
| description | Windows async types |
| homepage | |
| repository | https://github.com/microsoft/windows-rs |
| max_upload_size | |
| id | 1781262 |
| size | 141,279 |
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(())
}