ComputeError import { ComputeError } from "destack:compute"; Portable compute error. export struct ComputeError { kind: ComputeErrorKind; message: string; backendCode: int32; } language/library/src/compute/error.ds:23:32 Members kind: ComputeErrorKind Error category. message: string Human-readable message. backendCode: int32 Backend-specific error code when available.