MicrosecondsClock.timeval

timeval struct alias, defined as

struct timeval
{
    time_t tv_sec;  // UNIX time in s
    int    tv_usec; // µs in the current second
}
class MicrosecondsClock
alias timeval = .timeval

Meta