#formatting #fractional #time #float #fmt

floating-duration

Converts durations to fractional numbers and allows automatic formatting of durations

3 releases

Uses old Rust 2015

0.1.2 Mar 20, 2018
0.1.1 Apr 16, 2017
0.1.0 Apr 15, 2017

#353 in Date and time

Download history 269/week @ 2023-12-08 182/week @ 2023-12-15 185/week @ 2023-12-22 202/week @ 2023-12-29 223/week @ 2024-01-05 207/week @ 2024-01-12 239/week @ 2024-01-19 203/week @ 2024-01-26 205/week @ 2024-02-02 312/week @ 2024-02-09 231/week @ 2024-02-16 249/week @ 2024-02-23 308/week @ 2024-03-01 201/week @ 2024-03-08 254/week @ 2024-03-15 206/week @ 2024-03-22

1,013 downloads per month
Used in 6 crates

MIT/Apache

9KB
54 lines

floating-duration

Build Status Crates.io MIT/Apache Docs.rs

Allows converting a Duration to floating-point seconds, milliseconds and microseconds. Additionally, it allows automatic formatting of a Duration (it automatically chooses a unit).

Usage

Minimum Rust version: 1.8.0

Add this crate to Cargo.toml

[dependencies]
floating-duration = "0.1.2"

Now you can easily print a Duration:

extern crate floating_duration;

use std::time::Instant;

use floating_duration::{TimeAsFloat, TimeFormat};

fn main() {
    let start = Instant::now();
    
    let result = (1..12).fold(1, |acc, x| acc * x);
    
    println!("Needed {}", TimeFormat(start.elapsed()));
    println!("In seconds: {}", start.elapsed().as_fractional_secs());
}

Contribution

Contribution is very welcome!

Any contribution you submit is assumed to be dual-licensed under MIT/Apache-2.

License

floating-duration is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT.

No runtime deps