(self)
| 32 | |
| 33 | impl ExternalAcpClient { |
| 34 | fn id(self) -> &'static str { |
| 35 | match self { |
| 36 | Self::Opencode => "opencode", |
| 37 | Self::ClaudeCode => "claude-code", |
| 38 | Self::Codex => "codex", |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | fn display_name(self) -> &'static str { |
| 43 | match self { |
no outgoing calls
no test coverage detected