time 0.3.30

Date and time library. Fully interoperable with the standard library. Mostly compatible with #![no_std].
Documentation
1
2
3
4
5
6
7
8
//! A fallback for any OS not covered.

use crate::{OffsetDateTime, UtcOffset};

#[allow(clippy::missing_docs_in_private_items)]
pub(super) fn local_offset_at(_datetime: OffsetDateTime) -> Option<UtcOffset> {
    None
}