time-humanize 0.1.3

Display time in a human readable manner.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! time-humanize - A crate to display `std::time::Duration` in a human readable way
//!
//! ## Example
//! ```rust
//! use std::time::Duration;
//! use time_humanize::HumanTime;
//!
//! let duration = Duration::from_secs(60);
//!
//! println!("{}", HumanTime::from(duration));
//! println!("{}", HumanTime::from_seconds(-60));
//!
//! ```
//!
mod humantime;

pub use crate::humantime::{Accuracy, HumanTime, Humanize, Tense};