pub type RpcRequestResult = Result<Vec<u8>>;
pub enum RpcRequestResult { Ok(Vec<u8>), Err(Error), }
Contains the success value
Contains the error value