Returns the TDX event log serialized as JSON.
(&self)
| 477 | |
| 478 | /// Returns the TDX event log serialized as JSON. |
| 479 | fn tdx_event_log_string(&self) -> Option<String> { |
| 480 | self.tdx_event_log() |
| 481 | .map(|event_log| serde_json::to_string(event_log).unwrap_or_default()) |
| 482 | } |
| 483 | |
| 484 | /// Returns the parsed TD10 report from the embedded TDX quote. |
| 485 | fn td10_report(&self) -> Option<TDReport10>; |
no test coverage detected