How can I conform a Swift enum to `Equatable` when it has an any existential as one of its associated values? – Ios swift
Suppose I have: protocol MyError: Error, Equatable { var errorDispalyTitle: String { get } var errorDisplayMessage: String { get } } enum ContentState { case .loading case .error(any MyError) case .contentLoaded } If i were to implement Equatable in ContentState…