#timestamp #milliseconds #duration #serde #serialization

serde_millis

A serde wrapper that stores integer millisecond value for timestamps and durations (used similarly to serde_bytes)

2 releases

Uses old Rust 2015

0.1.1 Nov 29, 2017
0.1.0 Nov 28, 2017

#949 in Encoding

Download history 10215/week @ 2024-10-09 16362/week @ 2024-10-16 12843/week @ 2024-10-23 14804/week @ 2024-10-30 7005/week @ 2024-11-06 43689/week @ 2024-11-13 21761/week @ 2024-11-20 16131/week @ 2024-11-27 23255/week @ 2024-12-04 30475/week @ 2024-12-11 7515/week @ 2024-12-18 998/week @ 2024-12-25 11302/week @ 2025-01-01 21769/week @ 2025-01-08 21756/week @ 2025-01-15 9508/week @ 2025-01-22

64,514 downloads per month
Used in 5 crates (4 directly)

MIT/Apache

14KB
250 lines

Serde Millis

Documentation | Github | Crate

A serde wrapper, that can be used to serialize timestamps and durations as milliseconds. It's often useful together with serde_json to communicate with Javascript.

Example

#[macro_use]
extern crate serde_derive;

extern crate serde;
extern crate serde_millis;

use std::time::{Duration, SystemTime, Instant};

#[derive(Serialize, Deserialize)]
struct Timestamps {
    #[serde(with = "serde_millis")]
    time: SystemTime,

    #[serde(with = "serde_millis")]
    latency: Duration,

    // Instant is serialized relative to the current time, or in
    // other words by formula (but works for future instants too):
    //
    //   ts = SystemTime::now() - (Instant::now() - target_instant)
    //
    #[serde(with = "serde_millis")]
    timestamp: Instant,
}

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~100–330KB