Outcome
public struct Outcome : Sendable, Equatable, CustomStringConvertibleThe outcome of a code execution.
-
The code executed without errors.
Declaration
Swift
public static let ok: CodeExecutionResultPart.Outcome -
The code failed to execute.
Declaration
Swift
public static let failed: CodeExecutionResultPart.Outcome -
The code took too long to execute.
Declaration
Swift
public static let deadlineExceeded: CodeExecutionResultPart.Outcome -
Declaration
Swift
public var description: String { get }