Skip to documentation
SLOP

tiny.sandbox.Audit

Reference 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.

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

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

Definitions1
Public names2
Members5
Version26.7.0
Revisiondaab053ee433