Source code
Revision control
Copy as Markdown
Other Tools
//! A fallback for any OS not covered.
#[expect(clippy::missing_docs_in_private_items)]
#[inline]
pub(super) unsafe fn refresh_tz_unchecked() {}
#[expect(clippy::missing_docs_in_private_items)]
#[inline]
pub(super) fn refresh_tz() -> Option<()> {
Some(())
}