toml::time struct

A local time-of-day.

Public variables

uint8_t hour
The hour component, from 0 - 23.
uint8_t minute
The minute component, from 0 - 59.
uint8_t second
The second component, from 0 - 59.
uint32_t nanosecond
The fractional nanoseconds component, from 0 - 999999999.

Friends

auto operator!=(const time& lhs, const time& rhs) -> bool constexpr noexcept
Inequality operator.
auto operator<(time lhs, time rhs) -> bool constexpr noexcept
Less-than operator.
auto operator<=(time lhs, time rhs) -> bool constexpr noexcept
Less-than-or-equal-to operator.
auto operator==(const time& lhs, const time& rhs) -> bool constexpr noexcept
Equality operator.
auto operator>(time lhs, time rhs) -> bool constexpr noexcept
Greater-than operator.
auto operator>=(time lhs, time rhs) -> bool constexpr noexcept
Greater-than-or-equal-to operator.