pub struct TimeType(/* private fields */);
Expand description
The type of time zone time, for example when requesting the name. In time zones that do not apply DST, all three values may return the same result.
C++ enum: QTimeZone::TimeType
.
The type of time zone time, for example when requesting the name. In time zones that do not apply DST, all three values may return the same result.
Implementations§
Source§impl TimeType
impl TimeType
Sourcepub const StandardTime: TimeType
pub const StandardTime: TimeType
The standard time in a time zone, i.e. when Daylight-Saving is not in effect. For example when formatting a display name this will show something like “Pacific Standard Time”. (C++ enum variant: StandardTime = 0
)
Sourcepub const DaylightTime: TimeType
pub const DaylightTime: TimeType
A time when Daylight-Saving is in effect. For example when formatting a display name this will show something like “Pacific daylight-saving time”. (C++ enum variant: DaylightTime = 1
)
Sourcepub const GenericTime: TimeType
pub const GenericTime: TimeType
A time which is not specifically Standard or Daylight-Saving time, either an unknown time or a neutral form. For example when formatting a display name this will show something like “Pacific Time”. (C++ enum variant: GenericTime = 2
)