This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Represents the result of an asynchronous call. | |
Can be either a successfull result containing a return value, or a failure containing an error. | |
*/ | |
public enum Result<Value> { | |
case failure(error: Error) | |
case success(value: Value) | |