wp-model-core 0.8.7

Typed data model crate providing Value, Field, and Record primitives for the Warp PASE stack.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Error, Debug)]
pub enum ModelError {
    #[error("Data Model Parse error: {0}")]
    Parse(String),
    #[error("Data Model Format error: {0}")]
    Format(String),
    #[error("Data Model Validation error: {0}")]
    Validation(String),
}