menu

AllocationUnsupported

import { AllocationUnsupported } from "destack:memory";

Allocation failed because the runtime does not support the requested operation.

language/library/src/memory/error.ds:33:42
1export struct AllocationUnsupported {2    kind: "unsupported";3    operation: string;4    message: string;5}

Members

kind: "unsupported"

Discriminant for allocation failure matching.

operation: string

Unsupported allocation operation when known.

message: string

Human-readable diagnostic detail.