1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/// Sleeps asynchronously for `timeout` on the current Tokio runtime.
///
/// # Returns
///
/// This async function returns `()` after the duration elapses.
///
/// # Examples
///
/// ```no_run
/// # async fn demo() {
/// vibe_ready::platform::sleep(std::time::Duration::from_millis(10)).await;
/// # }
/// ```
pub async
/// Returns the current Unix timestamp in milliseconds.
///
/// # Returns
///
/// Milliseconds since the Unix epoch, or `0` if the system clock is before the epoch.
///
/// # Examples
///
/// ```
/// let now = vibe_ready::platform::now();
/// assert!(now >= 0);
/// ```