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

Method fmt

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

Source from the content-addressed store, hash-verified

148
149impl std::fmt::Display for DispatchResult {
150 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
151 write!(f, "[{}] → {}", self.session_id, self.new_phase)?;
152 if let Some(ref outcome) = self.change_recorded {
153 write!(f, " ({})", outcome)?;
154 }
155 for warning in &self.warnings {
156 write!(f, " ⚠ {}", warning)?;
157 }
158 Ok(())
159 }
160}
161
162// ═══════════════════════════════════════════════════════════════════════

Callers

nothing calls this directly

Calls 2

finishMethod · 0.45
is_activeMethod · 0.45

Tested by

no test coverage detected