std::future and futures-rs
Rust has two kinds of types commonly referred to as Future:
- the first is std::future::Future from Rust’s Standard Library.
- the second is futures::future::Future from the futures-rs crate.
Rust has two kinds of types commonly referred to as Future: