#string #duration #nano

duration-string

string to duration and visa-versa lib. format is [0-9]+(ns|us|ms|[smhdwy]) such as 100ms, 1s, 2h, 1y

10 unstable releases (3 breaking)

0.3.0 Mar 22, 2023
0.2.0 Jan 5, 2023
0.1.1 Jun 7, 2022
0.0.6 Mar 28, 2020

#32 in Date and time

Download history 1537/week @ 2023-08-01 1642/week @ 2023-08-08 1767/week @ 2023-08-15 2179/week @ 2023-08-22 2966/week @ 2023-08-29 6474/week @ 2023-09-05 3773/week @ 2023-09-12 3640/week @ 2023-09-19 3678/week @ 2023-09-26 4284/week @ 2023-10-03 3872/week @ 2023-10-10 4765/week @ 2023-10-17 5835/week @ 2023-10-24 6518/week @ 2023-10-31 4769/week @ 2023-11-07 4649/week @ 2023-11-14

22,764 downloads per month
Used in 20 crates (9 directly)

Custom license

18KB
363 lines

duration-string

duration-string is a string to duration and visa-versa lib.

Crates.io MIT licensed

Takes a string such as 100ms, 2s, 5m and converts it into a Duration Takes a duration and makes it into string.

The string format is [0-9]+(ns|us|ms|[smhdwy])

Example

String to duration

use std::convert::TryFrom;
use duration_string::DurationString;
use std::time::Duration;
let d: Duration = DurationString::try_from(String::from("100ms")).unwrap().into();
assert_eq!(d, Duration::from_millis(100));
// Alternatively:
let d: Duration = "100ms".parse::<DurationString>().unwrap().into();
assert_eq!(d, Duration::from_millis(100));

duration to string

use std::convert::TryFrom;
use duration_string::*;
use std::time::Duration;
let d: String = DurationString::from(Duration::from_millis(100)).into();
assert_eq!(d, String::from("100ms"));

Serde support

You can enable serialize/unserialize support by adding the feature serde_support

  • Add serde_support to the dependency duration-string = { version = "0.0.1", features = ["serde_support"] }
  • Add derive to struct
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize)]
struct Foo {
 duration: DurationString
}

License: MIT

Dependencies

~175KB