HealthInfo struct HealthInfo : IEquatable<HealthInfo> Documentation Code public double FailureRate { get; set; } public int Throughput { get; set; } public HealthInfo(int Throughput, double FailureRate) public static HealthInfo Create(int successes, int failures) public static bool op_Equality(HealthInfo left, HealthInfo right) public static bool op_Inequality(HealthInfo left, HealthInfo right) public void Deconstruct(out int Throughput, out double FailureRate) public bool Equals(HealthInfo other)