Crate batch_result

Crate batch_result 

Source
Expand description

§batch_result

A small utility for batch execution and heuristic evaluation of independent tasks.

This crate is designed for situations where:

  • Tasks are independent
  • Partial success is meaningful
  • You want diagnostics and evaluation, not fail-fast control flow

batch_result does not model workflows, dependencies, or execution order.

Structs§

Outcome
Aggregates multiple independent tasks and evaluates their outcomes.

Enums§

OutcomeClass
Classification of a completed batch outcome.
TaskStatus
Represents the execution status of a single task.

Type Aliases§

BoxedDynError
Boxed dynamic error type used throughout the crate.