millisecond 0.15.11

Format milliseconds into a human-readable and relative timestamp formats. This package has no-std dependency.
Documentation
1
2
3
4
5
6
7
/// The protocol for formatting to relative timestamp
pub trait RelativeFormatter {
    type Output;

    /// Provide a human-readable relative timestamp
    fn relative(&self) -> Self::Output;
}