SysTime.timezone

immutable(TimeZone) timezone() @property @safe const pure nothrow return scope

The current time zone of this SysTime. Its internal time is always kept in UTC, so there are no conversion issues between time zones due to DST. Functions which return all or part of the time - such as hours - adjust the time to this SysTime's time zone before returning.

void timezone(immutable TimeZone timezone) @property @safe pure nothrow scope

The current time zone of this SysTime. It's internal time is always kept in UTC, so there are no conversion issues between time zones due to DST. Functions which return all or part of the time - such as hours - adjust the time to this SysTime's time zone before returning.

Parameters

timezoneThe _TimeZone to set this SysTime's time zone to.