| 96 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] |
| 97 | #[serde(deny_unknown_fields)] |
| 98 | pub struct Proof { |
| 99 | #[serde(rename = "@type")] |
| 100 | pub type_: String, |
| 101 | pub cryptosuite: String, |
| 102 | #[serde(rename = "verificationMethod")] |
| 103 | pub verification_method: String, |
| 104 | #[serde(rename = "proofPurpose")] |
| 105 | pub proof_purpose: String, |
| 106 | #[serde(rename = "proofValue")] |
| 107 | pub proof_value: String, |
| 108 | } |
| 109 | |
| 110 | /// The canonical Intent node. |
| 111 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] |
no outgoing calls
no test coverage detected