tokio 0.2.18

An event-driven, non-blocking I/O platform for writing asynchronous I/O backed applications.
Documentation
mod test_delay;

use crate::time::{self, Instant};
use std::time::Duration;

fn assert_send<T: Send>() {}
fn assert_sync<T: Sync>() {}

#[test]
fn registration_is_send_and_sync() {
    use crate::time::driver::Registration;

    assert_send::<Registration>();
    assert_sync::<Registration>();
}

#[test]
#[should_panic]
fn delay_is_eager() {
    let when = Instant::now() + Duration::from_millis(100);
    let _ = time::delay_until(when);
}