tiny.sandbox.Audit
Defined in audit.
Describes the backend configuration that supported an execution result, reported across filesystem, process, network, and environment dimensions.
API (5)
Fields and members
Public fields and members.
Source
Source: lib/sandbox/src/audit.zig:39
zig
/// Describes the backend configuration that supported an execution result,/// reported across filesystem, process, network, and environment dimensions./// The backend constructs this record directly from the selected runner and run/// plan rather than from runtime measurements.////// Callers evaluate each dimension independently because one configuration/// choice implies nothing about another. For example, a Linux Bubblewrap run/// can establish a private process namespace while still sharing the host/// network namespace.pub const Audit = struct { runner: Runner = .staging, filesystem: Filesystem = .copied, process: Process = .host, network: Network = .inherited, environment: Environment = .inherited,};Source: lib/sandbox/src/root.zig:46
zig
pub const Audit = audit.Audit;Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 5 |
| Version | 26.7.0 |
| Revision | daab053ee433 |