(&self)
| 487 | |
| 488 | impl TdxAttestationExt for AttestationV1 { |
| 489 | fn tdx_quote_bytes(&self) -> Option<Vec<u8>> { |
| 490 | self.platform.tdx_quote().map(|quote| quote.to_vec()) |
| 491 | } |
| 492 | |
| 493 | fn tdx_event_log(&self) -> Option<&[TdxEvent]> { |
| 494 | self.platform.tdx_event_log() |
no test coverage detected