MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / fmt

Method fmt

atomic-agent/src/turn/orchestrator/mod.rs:197–206  ·  view source on GitHub ↗
(&self, f: &mut std::fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

195
196impl std::fmt::Display for DispatchResult {
197 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
198 write!(f, "[{}] → {}", self.session_id, self.new_phase)?;
199 if let Some(ref outcome) = self.change_recorded {
200 write!(f, " ({})", outcome)?;
201 }
202 for warning in &self.warnings {
203 write!(f, " ⚠ {}", warning)?;
204 }
205 Ok(())
206 }
207}
208
209// ═══════════════════════════════════════════════════════════════════════

Callers

nothing calls this directly

Calls 2

finishMethod · 0.45
is_activeMethod · 0.45

Tested by

no test coverage detected