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

Method fmt

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

Source from the content-addressed store, hash-verified

182
183impl std::fmt::Display for DispatchResult {
184 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
185 write!(f, "[{}] → {}", self.session_id, self.new_phase)?;
186 if let Some(ref outcome) = self.change_recorded {
187 write!(f, " ({})", outcome)?;
188 }
189 for warning in &self.warnings {
190 write!(f, " ⚠ {}", warning)?;
191 }
192 Ok(())
193 }
194}
195
196// ═══════════════════════════════════════════════════════════════════════

Callers

nothing calls this directly

Calls 2

finishMethod · 0.45
is_activeMethod · 0.45

Tested by

no test coverage detected