UpdateResult
public enum UpdateResult<T>
Result enumeration for Database update operations
-
The operation was successful
- result: The result of the operation
Declaration
Swift
case success(result: T)
-
The operation failed
- error:
Error
describing the operation failure.
Declaration
Swift
case failed(error: Error)
- error: