MappedActionResult
public enum MappedActionResult : Equatable
Result type for functions that attempt to perform actions that are mapped either from URLs or activitys or Intents.
-
The mapping was resolved and the action performed, reporting success
Declaration
Swift
case success
-
The mapping was resolved and the action is being performed asynchronously
Declaration
Swift
case completingAsync
-
The mapping was resolved but the action failed
Declaration
Swift
case failure(error: Error?)
-
There was not action mapped to the input
Declaration
Swift
case noMappingFound
-
The Routes feature is disabled so the routing was not performed
Declaration
Swift
case featureDisabled
-
Declaration
Swift
public static func == (lhs: MappedActionResult, rhs: MappedActionResult) -> Bool