settimeout

Crates.iosettimeout
lib.rssettimeout
version0.1.2
sourcesrc
created_at2020-03-02 06:04:01.068808
updated_at2020-03-02 06:26:12.713892
descriptionCreates a std::future::Future implementation to be ready at some point
homepagehttps://github.com/rousan/settimeout-rs
repositoryhttps://github.com/rousan/settimeout-rs
max_upload_size
id214368
size8,186
Rousan Ali (rousan)

documentation

README

Crate API Minimum rustc version

settimeout-rs

Provides an implementation of std::future::Future trait to be ready at some point. Sometimes, it is needed a std::future::Future trait instance for testing purpose in any async function.

Usage

Add this to your Cargo.toml:

[dependencies]
settimeout = "0.1.2"

Examples

Create a simple std::future::Future implementation:

use futures::executor::block_on;
use std::time::Duration;
use settimeout::set_timeout;

async fn foo() {
  println!("The Future will be ready after some time");
  set_timeout(Duration::from_secs(5)).await;
  println!("Now, it is ready");
}

fn main() {
   block_on(foo());
}

Contributing

Your PRs and stars are always welcome.

Commit count: 9

cargo fmt