(&self)
| 224 | |
| 225 | impl Clone for InnerService { |
| 226 | fn clone(&self) -> Self { |
| 227 | match self { |
| 228 | InnerService::Original(rs) => InnerService::Peer((*rs).clone()), |
| 229 | InnerService::Peer(peer) => InnerService::Peer(peer.clone()), |
| 230 | } |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | /// A wrapper around MCP (Model Context Protocol) service instances that manages |
no outgoing calls