1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
use crate::Time;
/// Access
impl Time {
/// Return true if this time has been initialized to anything non-default, i.e. 0.
pub fn is_set(&self) -> bool {
*self != Self::default()
}
}
/// Indicates if a number is positive or negative for use in [`Time`].
#[derive(PartialEq, Eq, Debug, Hash, Ord, PartialOrd, Clone, Copy)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[allow(missing_docs)]
pub enum Sign {
Plus,
Minus,
}
/// Various ways to describe a time format.
#[derive(Debug, Clone, Copy)]
pub enum Format<'a> {
/// A custom format typically defined with the [`format_description`][time::format_description] macro.
Custom(&'a [time::format_description::FormatItem<'a>]),
/// The seconds since 1970, also known as unix epoch, like `1660874655`.
Unix,
/// The seconds since 1970, followed by the offset, like `1660874655 +0800`
Raw,
}
///
#[allow(clippy::empty_docs)]
pub mod format;
mod init;
mod write;
mod sign {
use crate::time::Sign;
impl From<i32> for Sign {
fn from(v: i32) -> Self {
if v < 0 {
Sign::Minus
} else {
Sign::Plus
}
}
}
}
mod impls {
use crate::{time::Sign, Time};
impl Default for Time {
fn default() -> Self {
Time {
seconds: 0,
offset: 0,
sign: Sign::Plus,
}
}
}
}