MCPcopy Create free account
hub / github.com/SeismicSystems/summit / new

Method new

types/src/engine_client.rs:64–71  ·  view source on GitHub ↗
(engine_ipc_path: String)

Source from the content-addressed store, hash-verified

62 write!(f, "execution client error: {}", self.0)
63 }
64}
65
66impl std::error::Error for EngineClientError {
67 fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
68 Some(&self.0)
69 }
70}
71
72impl From<TransportError> for EngineClientError {
73 fn from(e: TransportError) -> Self {
74 EngineClientError(e)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected