MCPcopy Create free account
hub / github.com/KingOfBugbounty/enumrust / tool_completed

Method tool_completed

src/progress.rs:158–165  ·  view source on GitHub ↗
(&self, tool_name: &str, progress: f32)

Source from the content-addressed store, hash-verified

156 }
157
158 pub fn tool_completed(&self, tool_name: &str, progress: f32) {
159 self.add_event(
160 EventType::ToolCompleted { tool_name: tool_name.to_string() },
161 format!("✅ {} concluído", tool_name),
162 progress,
163 None,
164 );
165 }
166
167 pub fn tool_failed(&self, tool_name: &str, error: &str, progress: f32) {
168 self.add_event(

Callers 1

process_domain_implFunction · 0.80

Calls 1

add_eventMethod · 0.80

Tested by

no test coverage detected