[go: up one dir, main page]

time 0.3.41

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
//! A fallback for any OS not covered.

#[allow(clippy::missing_docs_in_private_items)]
pub(super) unsafe fn refresh_tz_unchecked() {}

#[allow(clippy::missing_docs_in_private_items)]
pub(super) fn refresh_tz() -> Option<()> {
    Some(())
}