made-api 0.7.2

Published contract of the embedded MADE: versioned views, capabilities and errors
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

/// One defect found while analyzing a definition draft.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DefinitionDefectView {
    pub severity: String,
    pub locus: String,
    pub defect: String,
    pub blocking: bool,
}