postmortem 0.1.1

A validation library that accumulates all errors for comprehensive feedback
Documentation
1
2
3
4
5
6
7
8
//! Error types for validation failures.
//!
//! This module provides types for representing validation errors with rich context
//! including paths, messages, and expected/actual values.

mod schema_error;

pub use schema_error::{SchemaError, SchemaErrors};