blob: bce81db9677be388eb6d32e5285a866e76065469 [file] [log] [blame]
library test.time;
using zx;
type AllInstants = struct {
monotonic zx.InstantMono;
boot zx.InstantBoot;
monotonic_ticks zx.InstantMonoTicks;
boot_ticks zx.InstantBootTicks;
};
type ComplexInstants = table {
1: monotonic array<zx.InstantMono, 10>;
2: boot vector<zx.InstantBoot>;
3: monotonic_ticks array<zx.InstantMonoTicks, 10>;
4: boot_ticks array<zx.InstantBootTicks, 10>;
};