#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

#942 in Encoding

Download history 20676/week @ 2024-09-26 8388/week @ 2024-10-03 14451/week @ 2024-10-10 15580/week @ 2024-10-17 11352/week @ 2024-10-24 13332/week @ 2024-10-31 10217/week @ 2024-11-07 48547/week @ 2024-11-14 14694/week @ 2024-11-21 21029/week @ 2024-11-28 21128/week @ 2024-12-05 29222/week @ 2024-12-12 3712/week @ 2024-12-19 1049/week @ 2024-12-26 14261/week @ 2025-01-02 18901/week @ 2025-01-09

41,855 downloads per month
Used in 6 crates (5 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–335KB