pub const UNIX_EPOCH: SystemTime = SystemTime(time::UNIX_EPOCH)
Here, time::UNIX_EPOCH refers to a constant in libstd/sys/{unix,windows}/time.rs (depending on the compile config) and should not be exposed. Its type is platform-specific, and private, too.
Cf. the SystemTime type is displayed as
pub struct SystemTime(_);
Here,
time::UNIX_EPOCHrefers to a constant inlibstd/sys/{unix,windows}/time.rs(depending on the compile config) and should not be exposed. Its type is platform-specific, and private, too.Cf. the
SystemTimetype is displayed as