Expand description
Unified error type for devops-models.
§Example
use devops_models::{DevopsError, Result};
fn parse(yaml: &str) -> Result<serde_json::Value> {
serde_yaml::from_str(yaml)
.map_err(|e| DevopsError::YamlParse(e.to_string()))
}Enums§
- Devops
Error - Unified error type for DevOps model operations.
Type Aliases§
- Result
- Convenience alias for
Result<T, DevopsError>.