pub type RPCResult<T> = Result<T, RPCError>;
enum RPCResult<T> { Ok(T), Err(RPCError), }
Contains the success value
Contains the error value