//! It contains a static variable that is set to the time at which
//! the application started.
usestd::sync::LazyLock;usestd::time::SystemTime;/// The time at which the application started.
pubstaticTIME_AT_APP_START:LazyLock<SystemTime>=LazyLock::new(SystemTime::now);