#duration #human #pretty

human-duration

human-duration converts a std::time::Duration to a human readable string

1 unstable release

0.1.0 Jan 17, 2022

#371 in Date and time

Download history 52/week @ 2024-03-25 74/week @ 2024-04-01 43/week @ 2024-04-08 31/week @ 2024-04-15 23/week @ 2024-04-22 42/week @ 2024-04-29 40/week @ 2024-05-06 51/week @ 2024-05-13 47/week @ 2024-05-20 40/week @ 2024-05-27 64/week @ 2024-06-03 55/week @ 2024-06-10 142/week @ 2024-06-17 51/week @ 2024-06-24 14/week @ 2024-07-08

218 downloads per month
Used in 5 crates

MIT license

7KB
81 lines

human-duration

Crates.io Crates.io docs.rs

human-duration converts a std::time::Duration to a human readable string.

Examples

use human_duration::human_duration;

let duration = std::time::Duration::new(120, 30_000_000);
assert_eq!(human_duration(&duration), "2m 0s 30ms");

let duration = std::time::Duration::new(9000, 0);
assert_eq!(human_duration(&duration), "2h 30m 0s 0ms");

Usage

Run

cargo add human_duration

or manually add it to your Cargo.toml:

[dependencies]
human_duration = "0.1"

Then use the human_duration function:

use human_duration::human_duration;

// somewhere in your code:
let duration = std::time::Duration::new(120, 0);
println!(human_duration(&duration));

License

MIT


lib.rs:

Human-readable duration

human-duration converts a std::time::Duration to a human readable string.

Examples:

use human_duration::human_duration;

let duration = std::time::Duration::new(120, 30_000_000);
assert_eq!(human_duration(&duration), "2m 0s 30ms");

let duration = std::time::Duration::new(9000, 0);
assert_eq!(human_duration(&duration), "2h 30m 0s 0ms");

No runtime deps