Add externally produced verification reports to this session's completion evidence.
(
&self,
reports: impl IntoIterator<Item = crate::verification::VerificationReport>,
)
| 1107 | |
| 1108 | /// Add externally produced verification reports to this session's completion evidence. |
| 1109 | pub fn record_verification_reports( |
| 1110 | &self, |
| 1111 | reports: impl IntoIterator<Item = crate::verification::VerificationReport>, |
| 1112 | ) { |
| 1113 | VerificationRuntime::from_session(self).record(reports); |
| 1114 | } |
| 1115 | |
| 1116 | // ======================================================================== |
| 1117 | // Hook API |