Foundation data models for systemprompt.io AI governance infrastructure. Shared DTOs, config, and domain types consumed by every layer of the MCP governance pipeline.
//! Errors raised while decoding `HashMap<String, serde_json::Value>`
//! row payloads produced by the runtime SQL adapter.
//!//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.
#[derive(Debug, Clone, thiserror::Error, PartialEq, Eq)]pubenumRowParseError{#[error("missing or invalid field: {0}")]
Missing(&'staticstr),#[error("{0}")]
OutOfRange(&'staticstr),#[error("invalid identifier in field {field}")]
InvalidId {
field:&'staticstr,#[source]
source:systemprompt_identifiers::error::IdValidationError,},}