#human-readable #seconds #convert #human #readable #time

secfmt

Converts seconds into a human readable format (struct) containing years, days, hours, minutes and seconds

2 releases

0.1.1 Apr 5, 2019
0.1.0 Apr 4, 2019

#454 in Date and time

Download history 13/week @ 2023-12-05 44/week @ 2023-12-12 28/week @ 2023-12-19 54/week @ 2023-12-26 27/week @ 2024-01-02 17/week @ 2024-01-09 13/week @ 2024-01-16 13/week @ 2024-01-23 10/week @ 2024-01-30 16/week @ 2024-02-06 9/week @ 2024-02-13 27/week @ 2024-02-20 42/week @ 2024-02-27 23/week @ 2024-03-05 34/week @ 2024-03-12 54/week @ 2024-03-19

159 downloads per month
Used in 2 crates

MIT license

6KB
62 lines

secfmt

Build Status Crate API License

Converts seconds into a human readable format (struct) containing years, days, hours, minutes and seconds.

Usage

Add this to your Cargo.toml:

[dependencies]
secfmt = "0.1"

Add this to your *.rs file:

extern crate secfmt;

Now you can proceed as follows:

Example 1

let seconds = 31537529;
let seconds_human_readable = secfmt::from(seconds);

Example 2

assert_eq!(1, secfmt::from(31537529).years);
assert_eq!(0, secfmt::from(31537529).days);
assert_eq!(0, secfmt::from(31537529).hours);
assert_eq!(25, secfmt::from(31537529).minutes);
assert_eq!(29, secfmt::from(31537529).seconds);

Example 3

let shr = secfmt::from(31537529);
let s = format!("{}y {}d {}h {}m {}s", shr.years, shr.days, shr.hours, shr.minutes, shr.seconds);
assert_eq!("1y 0d 0h 25m 29s", s);

Getting help

If you have questions or problems with secfmt, then I'm happy to respond to GitHub issues.

License

secfmt is distributed under the terms of the MIT license.

See LICENSE for details.

No runtime deps