If you really want to keep it returning default, you could use
result.Equals(default)
the built-in Equals method of a ValueTuple should work.
As of C# 7.3 value tuples now also support comparisons via == and != fully,
Meaning you can now also do
result == default and it should work the same.