mitrid_core 0.9.4

Core library of the Mitrid framework
1
2
3
4
5
6
7
8
9
//! # Timestamp
//!
//! `timestamp` is the module providing the timestamping utilities.

pub mod timestamp_diff;
pub mod timestamp;

pub use self::timestamp_diff::TimestampDiff;
pub use self::timestamp::Timestamp;