Closed
Description
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(_);