Result

public enum Result : Sendable, Equatable

Enum representing the result of validation. It indicates whether an input is valid or invalid.

  • Indicates a valid input with the associated address (e.g., email or phone number).

    Declaration

    Swift

    case valid(address: String)
  • Indicates an invalid input.

    Declaration

    Swift

    case invalid