| 175 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] |
| 176 | #[serde(deny_unknown_fields)] |
| 177 | pub struct Proof { |
| 178 | #[serde(rename = "@type")] |
| 179 | pub type_: String, |
| 180 | pub cryptosuite: String, |
| 181 | #[serde(rename = "verificationMethod")] |
| 182 | pub verification_method: String, |
| 183 | #[serde(rename = "proofPurpose")] |
| 184 | pub proof_purpose: String, |
| 185 | #[serde(rename = "proofValue")] |
| 186 | pub proof_value: String, |
| 187 | } |
| 188 | |
| 189 | /// The canonical Intent node. |
| 190 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] |
no outgoing calls
no test coverage detected