27 lines
588 B
Swift
27 lines
588 B
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum ViewState: Equatable {
|
|
case loading
|
|
case loaded
|
|
case error(Error)
|
|
|
|
static public func ==(lhs: ViewState, rhs: ViewState) -> Bool {
|
|
switch (lhs, rhs) {
|
|
case (.error, .error):
|
|
return true
|
|
case (.loaded, .loaded):
|
|
return true
|
|
case (.loading,.loading):
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
}
|