pub const Deps = struct
pub const Deps = struct { steps: Storage.LengthPrefixedList(Step.Index), pub const Index = enum(u32) { _, pub fn get(this: @This(), c: *const Configuration) Deps { return extraData(c, Deps, @backingInt(this)); } pub fn slice(this: @This(), c: *const Configuration) []const Step.Index { return get(this, c).steps.slice; } }; }