fix(ipc): make IpcServer Debug impl generic (#20042)

This commit is contained in:
Bashmunta
2025-12-02 17:08:02 +02:00
committed by GitHub
parent 8f2811dd19
commit 98e9a1d09e

View File

@@ -248,7 +248,7 @@ where
}
}
impl std::fmt::Debug for IpcServer {
impl<HttpMiddleware, RpcMiddleware> std::fmt::Debug for IpcServer<HttpMiddleware, RpcMiddleware> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("IpcServer")
.field("endpoint", &self.endpoint)