pub const SearchDir = struct
pub const SearchDir = struct { dir: std.Io.Dir, path: ?[]const u8, pub fn deinit(self: *SearchDir, allocator: Allocator, io: Io) void { self.dir.close(io); if (self.path) |path| { allocator.free(path); } } }