blob: f0bc4be3cc24d7bf23d3c76bfc48d17a7549fef7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//! A method to obtain the local offset from UTC.
#![allow(clippy::missing_const_for_fn)]
#[cfg_attr(target_family = "windows", path = "windows.rs")]
#[cfg_attr(target_family = "unix", path = "unix.rs")]
#[cfg_attr(
all(
target_arch = "wasm32",
not(any(target_os = "emscripten", target_os = "wasi")),
feature = "wasm-bindgen"
),
path = "wasm_js.rs"
)]
mod imp;
use crate::{OffsetDateTime, UtcOffset};
/// Attempt to obtain the system's UTC offset. If the offset cannot be determined, `None` is
/// returned.
pub(crate) fn local_offset_at(datetime: OffsetDateTime) -> Option<UtcOffset> {
imp::local_offset_at(datetime)
}
|