#timestamp #milliseconds #serde #duration #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

#963 in Encoding

Download history 9986/week @ 2023-11-20 19382/week @ 2023-11-27 11204/week @ 2023-12-04 8765/week @ 2023-12-11 15218/week @ 2023-12-18 936/week @ 2023-12-25 4585/week @ 2024-01-01 6435/week @ 2024-01-08 4959/week @ 2024-01-15 9197/week @ 2024-01-22 6453/week @ 2024-01-29 8394/week @ 2024-02-05 10120/week @ 2024-02-12 4897/week @ 2024-02-19 11685/week @ 2024-02-26 6253/week @ 2024-03-04

33,069 downloads per month
Used in 7 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

~110–355KB