menu
AllocationUnsupported
import { AllocationUnsupported } from "destack:memory";
Allocation failed because the runtime does not support the requested operation.
1export struct AllocationUnsupported {2 kind: "unsupported";3 operation: string;4 message: string;5}Members
kind: "unsupported"Discriminant for allocation failure matching.
operation: stringUnsupported allocation operation when known.
message: stringHuman-readable diagnostic detail.