pub type ResultPayload = TaskResult<Value>;Expand description
Serialized result payload including the current attempt and status
Aliased Type§
pub struct ResultPayload {
pub task_id: TaskId,
pub attempt: usize,
pub status: Status,
pub result: Result<Value, String>,
}Fields§
§task_id: TaskIdThe unique identifier of the task
attempt: usizeThe most recent result
status: StatusThe status of the task
result: Result<Value, String>The result of the task execution