| 12 | |
| 13 | #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize, Default, JsonSchema)] |
| 14 | pub struct QueryDef { |
| 15 | #[schemars(with = "String")] |
| 16 | pub version: Option<VersionReq>, |
| 17 | #[serde(default)] |
| 18 | pub other: HashMap<String, String>, |
| 19 | } |
| 20 | |
| 21 | #[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize, JsonSchema)] |
| 22 | pub enum VarDefKind { |
no outgoing calls
no test coverage detected