fromEpochMilliseconds
Construct an Instant from epoch milliseconds (Temporal.Instant.fromEpochMilliseconds).
Parameters
- epoch_ms:i64
- i64
Source
Implementation
pub fn fromEpochMilliseconds(epoch_ms: i64) !Instant {
return wrapInstant(abi.c.temporal_rs_Instant_from_epoch_milliseconds(epoch_ms));
}