actix/
clock.rs

1//! Utilities for tracking time.
2//!
3//! This module provides a number of types for executing code after a set period of time.
4//!
5//! See [`tokio::time` module] for full documentation.
6//!
7//! [`tokio::time` module]: https://docs.rs/tokio/1.0.1/tokio/time/index.html
8
9pub use actix_rt::time::*;