[go: up one dir, main page]

time 0.3.44

Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! 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(())
}