Return a stored tool artifact by URI, if it exists in this session.
(&self, artifact_uri: &str)
| 1082 | |
| 1083 | /// Return a stored tool artifact by URI, if it exists in this session. |
| 1084 | pub fn get_artifact(&self, artifact_uri: &str) -> Option<crate::tools::ToolArtifact> { |
| 1085 | DirectToolRuntime::from_session(self).artifact(artifact_uri) |
| 1086 | } |
| 1087 | |
| 1088 | /// Return compact execution trace events recorded for this session. |
| 1089 | pub fn trace_events(&self) -> Vec<crate::trace::TraceEvent> { |