(&self)
| 24 | |
| 25 | impl PlatformEvidence { |
| 26 | pub fn tdx_quote(&self) -> Option<&[u8]> { |
| 27 | match self { |
| 28 | Self::Tdx { quote, .. } => Some(quote.as_slice()), |
| 29 | _ => None, |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | pub fn tdx_event_log(&self) -> Option<&[TdxEvent]> { |
| 34 | match self { |
no outgoing calls
no test coverage detected