Skip to documentation
SLOP

tiny.machine.InstanceStartResult

Reference tiny.machine InstanceStartResult

Defined in tiny.machine.

Reports how a cold start turned out, so the caller learns the state of its buffers across the three outcomes.

API (3)

Fields and members

Public fields and members.

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

Source

Source: lib/machine/src/instance/owner.zig:232

zig
/// Reports how a cold start turned out, so the caller learns the state of its/// buffers across the three outcomes. On ready, the instance holds the caller's/// storage and RAM until `deinit`. On unavailable, the storage stays closed and/// the RAM is untouched. On rejected, the value names the validation or backend/// failure.pub const StartResult = union(enum) {    ready: Instance,    unavailable: types.Unavailable,    rejected: InitError,};

Source: lib/machine/src/root.zig:101

zig
pub const InstanceStartResult = instance.StartResult;

Also reachable as

instance.StartResult.

Audit

Definitions1
Public names2
Members3
Version26.7.0
Revisiondaab053ee433