pub type RPCResponse = Result<ByteBuf, String>;
enum RPCResponse { Ok(ByteBuf), Err(String), }
Contains the success value
Contains the error value