hyperlane-time 0.7.25

A library for fetching the current time based on the system's locale settings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! hyperlane-time
//!
//! A library for fetching the current time based on the system's locale settings.

mod r#enum;
mod r#fn;
mod r#impl;

pub use r#fn::*;

use r#enum::*;

use std::{
    env, fmt,
    fmt::Write,
    str::FromStr,
    time::{Duration, SystemTime, UNIX_EPOCH},
};