Skip to documentation
SLOP

tiny.cook.Entry

Reference tiny.cook Entry

Defined in tiny.cook.

API (8)

Actions

Public operations.

Fields and members

Public fields and members.

No direct callersNo direct callstiny.cookEntry
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/cook/src/cache.zig:89

zig
pub const Entry = struct {    io: std.Io,    gpa: Allocator,    path: []u8,    lock: std.Io.File,    dir: std.Io.Dir,    summary: Summary,    hit: bool,    pub fn deinit(entry: *Entry) void {        entry.dir.close(entry.io);        entry.lock.close(entry.io);        entry.gpa.free(entry.path);        entry.* = undefined;    }};

Source: lib/cook/src/root.zig:6

zig
pub const Entry = cache.Entry;

Audit

Definitions2
Public names2
Members7
Version26.7.0
Revisiondaab053ee433