(&self)
| 31 | } |
| 32 | |
| 33 | pub fn tdx_event_log(&self) -> Option<&[TdxEvent]> { |
| 34 | match self { |
| 35 | Self::Tdx { event_log, .. } => Some(event_log.as_slice()), |
| 36 | _ => None, |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | pub fn into_stripped(self) -> Self { |
| 41 | match self { |
no outgoing calls
no test coverage detected