We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When converting from Result<'T, 'TError> to Validation<'TError, 'T> we need to either:
Result<'T, 'TError>
Validation<'TError, 'T>
'TError
I'm not sure what's the best way to go, maybe the best backward compatibility way is to add a static constraint to .ofResult
.ofResult
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When converting from
Result<'T, 'TError>
toValidation<'TError, 'T>
we need to either:'TError
is a Semigroup (this simply means that the type is additive)I'm not sure what's the best way to go, maybe the best backward compatibility way is to add a static constraint to
.ofResult
The text was updated successfully, but these errors were encountered: