lib/memtrace/src/census/model.zig
daab053ee43316e1809a84551d573ddd1e5bf3d2
1 pub const Entry = struct {
2 label: []const u8,
3 items: usize = 0,
4 bytes: usize = 0,
5 };
6
7 pub const SummaryOptions = struct {
8 top: usize = 24,
9 min_bytes: usize = 0,
10 };
11
12 pub const Slot = struct {
13 entry: Entry = .{ .label = &.{} },
14 hash: u64 = 0,
15 occupied: bool = false,
16 };