tiny.memtrace.Scope
Defined in tiny.memtrace.
API (5)
Actions
Public operations.
Fields and members
Public fields and members.
Source
Source: lib/memtrace/src/tracer.zig:405
zig
pub const Scope = struct { tracer: *Tracer, previous: u32, scope_id: u32, active: bool = true, pub fn exit(self: *Scope) void { if (!self.active) return; self.tracer.exitScope(self.scope_id, self.previous); self.active = false; }};Source: lib/memtrace/src/root.zig:60
zig
pub const Scope = tracer_mod.Scope;Audit
| Definitions | 2 |
|---|---|
| Public names | 2 |
| Members | 4 |
| Version | 26.7.0 |
| Revision | daab053ee433 |