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.
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
Audit
| Definitions | 1 |
|---|---|
| Public names | 2 |
| Members | 3 |
| Version | 26.7.0 |
| Revision | daab053ee433 |