mitrid_core 0.9.4

Core library of the Mitrid framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # Util
//!
//! `util` is the module providing utility types and helper functions used across the library.

/// Types used to produce and manipulate timestamps.
pub mod timestamp;

/// Functions used to match and pattern match strings against a regex.
pub mod regex;

/// Type and constants used for versioning (semver).
pub mod version;

pub use self::timestamp::{Timestamp, TimestampDiff};
pub use self::version::Version;