diff --git a/ipc/rpc/src/interface.rs b/ipc/rpc/src/interface.rs index 5c0d57612..59da58092 100644 --- a/ipc/rpc/src/interface.rs +++ b/ipc/rpc/src/interface.rs @@ -46,7 +46,7 @@ pub enum Error { HandshakeFailed, } -pub trait IpcInterface:IpcConfig { +pub trait IpcInterface: IpcConfig { /// reads the message from io, dispatches the call and returns serialized result fn dispatch(&self, r: &mut R) -> Vec where R: Read;