A Result is either a Success or a Failure. Both variants are
parameterized by BOTH the value and error types so that a chain tracks them
precisely: mBind unions the error type as new failures are introduced, or
unions the value type as failures recover, and neither ever widens to unknown.
A Result is either a Success or a Failure. Both variants are parameterized by BOTH the value and error types so that a chain tracks them precisely:
mBindunions the error type as new failures are introduced,orunions the value type as failures recover, and neither ever widens tounknown.