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