diff --git a/ipc/rpc/src/interface.rs b/ipc/rpc/src/interface.rs index af52f0eea..820994a2b 100644 --- a/ipc/rpc/src/interface.rs +++ b/ipc/rpc/src/interface.rs @@ -59,7 +59,7 @@ pub enum Error { /// Allows implementor to be attached to generic worker and dispatch rpc requests /// over IPC -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;