Links
Comment on page

time

Types used to decode various different time formats

Types

type::DOSDate

A DOS Date value
using DOSDate = u16 [[format]];

type::DOSTime

A DOS Time value
using DOSTime = u16 [[format]];

type::FILETIME

A 64bit FILETIME value
using FILETIME = u64 [[format]];

type::time32_t

A 32 bit Unix time value
using time32_t = u32 [[format]];

type::time64_t

A 64 bit Unix time value
using time64_t = u64 [[format]];

type::time_t

Alias name for time32_t
using time_t = type::time32_t;
Last modified 1mo ago