Skip to documentation
SLOP

tiny.machine.InstanceRestoreResult

Reference tiny.machine InstanceRestoreResult

Defined in tiny.machine.

Reports how a restore turned out, so the caller learns the state of the restored buffers across the three outcomes.

API (3)

Fields and members

Public fields and members.

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

Source

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

zig
/// Reports how a restore turned out, so the caller learns the state of the/// restored buffers across the three outcomes. On ready, the instance holds the/// caller's storage and whatever backs its memory until `deinit`. On/// unavailable, the storage stays closed and the destination RAM is untouched./// On rejected, the value names the restore failure.pub const RestoreResult = union(enum) {    ready: Instance,    unavailable: types.Unavailable,    rejected: RestoreError,};

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

zig
pub const InstanceRestoreResult = instance.RestoreResult;

Also reachable as

instance.RestoreResult.

Audit

Definitions1
Public names2
Members3
Version26.7.0
Revisiondaab053ee433