Error handling
pondrs uses Rustβs standard Result type for error propagation. The framework provides PondError for infrastructure errors, while letting you define your own error type for domain-specific failures.
- Error Type β
PondError, custom error types, and theFrom<PondError>requirement - Node Errors β how fallible node functions propagate errors
- Dataset Errors β the
Dataset::Errorassociated type and adding custom error variants